Package net.sf.basedb.core
Interface UsableDataFileType
-
- All Known Implementing Classes:
ItemSubtypeFileType
,PlatformFileType
public interface UsableDataFileType
Utility interface for collecting information about data file requirements when used on a certain platform/variant or item subtype.- Since:
- 3.0
- Author:
- nicklas
- See Also:
PlatformFileType
,ItemSubtypeFileType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAllowMultiple()
A flag indicating if it is allowed to attach multiple files or only a single one of the given type.DataFileType
getDataFileType()
Get the data file type the information applies to.boolean
isRequired()
A flag indicating if a file should be required or not.
-
-
-
Method Detail
-
getDataFileType
DataFileType getDataFileType()
Get the data file type the information applies to.
-
isRequired
boolean isRequired()
A flag indicating if a file should be required or not.
-
getAllowMultiple
boolean getAllowMultiple()
A flag indicating if it is allowed to attach multiple files or only a single one of the given type.
-
-