java.lang.Object
com.lowagie.text.pdf.PdfDeveloperExtension
Deprecated.
Beginning with BaseVersion 1.7, the extensions dictionary lets developers designate that a given document contains
extensions to PDF. The presence of the extension dictionary in a document indicates that it may contain
developer-specific PDF properties that extend a particular base version of the PDF specification. The extensions
dictionary enables developers to identify their own extensions relative to a base version of PDF. Additionally, the
convention identifies extension levels relative to that base version. The intent of this dictionary is to enable
developers of PDF-producing applications to identify company-specific specifications (such as this one) that
PDF-consuming applications use to interpret the extensions.
- Since:
- 2.1.6
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PdfDeveloperExtensionDeprecated.An instance of this class for Adobe 1.7 Extension level 3.protected PdfNameDeprecated.The base version.protected intDeprecated.The extension level within the baseversion.protected PdfNameDeprecated.The prefix used in the Extensions dictionary added to the Catalog. -
Constructor Summary
ConstructorsConstructorDescriptionPdfDeveloperExtension(PdfName prefix, PdfName baseversion, int extensionLevel) Deprecated.Creates a PdfDeveloperExtension object. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Gets the baseversion name.Deprecated.Generations the developer extension dictionary corresponding with the prefix.intDeprecated.Gets the extension level within the baseversion.Deprecated.Gets the prefix name.
-
Field Details
-
ADOBE_1_7_EXTENSIONLEVEL3
Deprecated.An instance of this class for Adobe 1.7 Extension level 3. -
prefix
Deprecated.The prefix used in the Extensions dictionary added to the Catalog. -
baseversion
Deprecated.The base version. -
extensionLevel
protected int extensionLevelDeprecated.The extension level within the baseversion.
-
-
Constructor Details
-
PdfDeveloperExtension
Deprecated.Creates a PdfDeveloperExtension object.- Parameters:
prefix- the prefix referring to the developerbaseversion- the number of the base versionextensionLevel- the extension level within the baseverion.
-
-
Method Details
-
getPrefix
Deprecated.Gets the prefix name.- Returns:
- a PdfName
-
getBaseversion
Deprecated.Gets the baseversion name.- Returns:
- a PdfName
-
getExtensionLevel
public int getExtensionLevel()Deprecated.Gets the extension level within the baseversion.- Returns:
- an integer
-
getDeveloperExtensions
Deprecated.Generations the developer extension dictionary corresponding with the prefix.- Returns:
- a PdfDictionary
-