Schnittstelle Source
- Alle bekannten Implementierungsklassen:
CombinedFileSource
,FileSource
,JdbcMetadataSource
,SourceImpl
public interface Source
An entity which serves as an input for the generation process.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbyte[]
Returns the checksum of the content of the source.Gets a description of this source for debugging purposes.Returns the date when the source was last modified.Returns the root element of the source.Returns the source file, if it exists.
-
Methodendetails
-
getRootElement
Returns the root element of the source.- Gibt zurück:
- the root element of the source, not null.
- Löst aus:
SourceException
- if the source cannot be constructed.
-
getDescription
String getDescription()Gets a description of this source for debugging purposes.- Gibt zurück:
- the description, which should make it possible to identify the currently processed output.
-
getSourceFile
File getSourceFile()Returns the source file, if it exists.- Gibt zurück:
- the source file, or null if the source is not read from a file.
-
getLastModified
Date getLastModified()Returns the date when the source was last modified.- Gibt zurück:
- the last modification date, or null when unknown.
-
getContentChecksum
byte[] getContentChecksum()Returns the checksum of the content of the source. It is not defined which checksum is returned, the only requirement is that collisions should be extremely rare, i.e it can be assumed that if the checksum is the same, the content is also the same.- Gibt zurück:
- the checksum of the content of the source, or null if it cannot be determined.
-