Interface Generator
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
GeneratorImpl
Interface for the manifest-generator XML type
Interface for the manifest-generator XML type used in the Manifest
document type.
Generator should provide information about how and when this meta data archive has been generated. There is no normative
specification for particular attribute values. The information provided should be as short as possible and as descriptive
as required.
-
Method Summary
Modifier and TypeMethodDescriptionGets the original document Id of this meta data archive.Gets the original document path of this meta data archive.getDate()Gets the creation date of this meta data archive.getName()Gets the name of the generator.Gets the name of the platform.voidsetCopiedFromId(String copiedFromId) Sets the original document Id of this meta data archive.voidsetCopiedFromPath(String copiedFromPath) Sets the original document path of this meta data archive.voidSets the creation date of this meta data archive.voidSets the name of the generator.voidsetPlatform(String platform) Sets the name of the platform.
-
Method Details
-
getName
String getName()Gets the name of the generator.
Gets the name of the generator of this meta data archive, e.g. priint:PDF Renderer
- Returns:
- the name of the generator
-
setName
Sets the name of the generator.
Sets the name of the generator of this meta data archive.
- Parameters:
name- name of the generator
-
getPlatform
String getPlatform()Gets the name of the platform.
Gets the name of the platform, this meta data archive was generated on, e.g. MacOS.
- Returns:
- name of the platform
-
setPlatform
Sets the name of the platform.
Sets the name of the platform, this meta data archive was generated on
- Parameters:
platform- name of the platform
-
getDate
Date getDate()Gets the creation date of this meta data archive.
Gets the date, this meta data archive was created.
- Returns:
- creation date of this meta data archive
-
setDate
Sets the creation date of this meta data archive.
Sets the date, this meta data archive was created.
- Parameters:
date- creation date of this meta data archive
-
getCopiedFromId
String getCopiedFromId()Gets the original document Id of this meta data archive.
Gets the original document Id of this meta data archive.
If the meta data archive has been copied (e.g. when duplicating a document), this is the Id of the document, this meta data archive was originally associated to.- Returns:
- Id of the original document
-
setCopiedFromId
Sets the original document Id of this meta data archive.
Sets the original document Id of this meta data archive.
If the meta data archive has been copied (e.g. when duplicating a document), this should be set to the Id of the document, this meta data archive was originally associated to.- Parameters:
copiedFromId- Id of the original document
-
getCopiedFromPath
String getCopiedFromPath()Gets the original document path of this meta data archive.
Gets the original document path of this meta data archive.
If the meta data archive has been copied (e.g. when duplicating a document), this is the path of the document, this meta data archive was originally associated to.- Returns:
- path of the original document
-
setCopiedFromPath
Sets the original document path of this meta data archive.
Sets the original document path of this meta data archive.
If the meta data archive has been copied (e.g. when duplicating a document), this should be set to the path of the document, this meta data archive was originally associated to.- Parameters:
copiedFromPath- path of the original document
-