Package net.sf.jasperreports.export
Interface DocxExporterConfiguration
-
- All Superinterfaces:
CommonExportConfiguration,ExporterConfiguration
- All Known Implementing Classes:
SimpleDocxExporterConfiguration
public interface DocxExporterConfiguration extends ExporterConfiguration
Interface containing settings used by the DOCX exporter.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
JRDocxExporter
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringPROPERTY_EMBED_FONTSProperty that indicates whether the true type fonts used in the report should be embedded into the generated DOCX document.static java.lang.StringPROPERTY_ENCRYPTION_PASSWORDProperty whose value is used as default for thegetEncryptionPassword()export configuration setting.static java.lang.StringPROPERTY_METADATA_APPLICATIONProperty whose value is used as default for thegetMetadataApplication()export configuration setting.static java.lang.StringPROPERTY_METADATA_AUTHORProperty whose value is used as default for thegetMetadataAuthor()export configuration setting.static java.lang.StringPROPERTY_METADATA_KEYWORDSProperty whose value is used as default for thegetMetadataKeywords()export configuration setting.static java.lang.StringPROPERTY_METADATA_SUBJECTProperty whose value is used as default for thegetMetadataSubject()export configuration setting.static java.lang.StringPROPERTY_METADATA_TITLEProperty whose value is used as default for thegetMetadataTitle()export configuration setting.-
Fields inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
PROPERTY_EXPORT_CONFIGURATION_OVERRIDE_REPORT_HINTS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetEncryptionPassword()The encryption password needed to open the document, if it is encrypted.java.lang.StringgetMetadataApplication()The Application for the DOCX document.java.lang.StringgetMetadataAuthor()The Author of the DOCX document.java.lang.StringgetMetadataKeywords()The Keywords of the DOCX document.java.lang.StringgetMetadataSubject()The Subject of the DOCX document.java.lang.StringgetMetadataTitle()The Title of the DOCX document.java.lang.BooleanisEmbedFonts()Indicates whether the true type fonts used in the report should be embedded into the generated DOCX document.-
Methods inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
isOverrideHints
-
-
-
-
Field Detail
-
PROPERTY_METADATA_TITLE
static final java.lang.String PROPERTY_METADATA_TITLE
Property whose value is used as default for thegetMetadataTitle()export configuration setting.- See Also:
- Constant Field Values
-
PROPERTY_METADATA_AUTHOR
static final java.lang.String PROPERTY_METADATA_AUTHOR
Property whose value is used as default for thegetMetadataAuthor()export configuration setting.- See Also:
- Constant Field Values
-
PROPERTY_METADATA_SUBJECT
static final java.lang.String PROPERTY_METADATA_SUBJECT
Property whose value is used as default for thegetMetadataSubject()export configuration setting.- See Also:
- Constant Field Values
-
PROPERTY_METADATA_KEYWORDS
static final java.lang.String PROPERTY_METADATA_KEYWORDS
Property whose value is used as default for thegetMetadataKeywords()export configuration setting.- See Also:
- Constant Field Values
-
PROPERTY_METADATA_APPLICATION
static final java.lang.String PROPERTY_METADATA_APPLICATION
Property whose value is used as default for thegetMetadataApplication()export configuration setting.- See Also:
- Constant Field Values
-
PROPERTY_EMBED_FONTS
static final java.lang.String PROPERTY_EMBED_FONTS
Property that indicates whether the true type fonts used in the report should be embedded into the generated DOCX document. This property serves as default value for theisEmbedFonts()export configuration setting.- See Also:
- Constant Field Values
-
PROPERTY_ENCRYPTION_PASSWORD
static final java.lang.String PROPERTY_ENCRYPTION_PASSWORD
Property whose value is used as default for thegetEncryptionPassword()export configuration setting.- See Also:
JRPropertiesUtil, Constant Field Values
-
-
Method Detail
-
getMetadataTitle
java.lang.String getMetadataTitle()
The Title of the DOCX document.
-
getMetadataAuthor
java.lang.String getMetadataAuthor()
The Author of the DOCX document.
-
getMetadataSubject
java.lang.String getMetadataSubject()
The Subject of the DOCX document.
-
getMetadataKeywords
java.lang.String getMetadataKeywords()
The Keywords of the DOCX document.
-
getMetadataApplication
java.lang.String getMetadataApplication()
The Application for the DOCX document. Defaults to "JasperReports Library version x.x.x".
-
isEmbedFonts
java.lang.Boolean isEmbedFonts()
Indicates whether the true type fonts used in the report should be embedded into the generated DOCX document.- See Also:
PROPERTY_EMBED_FONTS
-
getEncryptionPassword
java.lang.String getEncryptionPassword()
The encryption password needed to open the document, if it is encrypted.- See Also:
PROPERTY_ENCRYPTION_PASSWORD
-
-