Interface ModelFile
-
- All Known Subinterfaces:
CallableModelFile
,TableModelFile
- All Known Implementing Classes:
AbstractModelFile
,CallableModelFileImpl
,TableModelFileImpl
public interface ModelFile
This interface represents the description of a file used for a model and provides the information where to find it.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ModelFile.ModelFileLocation
Where to search the file? In the repository (or if not found there in the repo-copy within the jar) or in the sourcepath
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelFile.ModelFileLocation
getLocation()
java.lang.String
getName()
-
-
-
Method Detail
-
getName
java.lang.String getName()
- Returns:
- the name used by the
ModelFileFinder
to find the file.
-
getLocation
ModelFile.ModelFileLocation getLocation()
- Returns:
- the location where to search for the file.
-
-