Package writer2latex.office
Class MetaData
- java.lang.Object
-
- writer2latex.office.MetaData
-
public class MetaData extends java.lang.ObjectThis class represents the metadata of an OOo Writer document.
-
-
Constructor Summary
Constructors Constructor Description MetaData(OfficeDocument oooDoc)Construct a new instance from an OOo Writer document.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCreator()Get the creator of this document (may be null)java.lang.StringgetDate()Get the date of this document (may be null)java.lang.StringgetDescription()Get the description of this document (may be null)java.lang.StringgetInitialCreator()Get the initial creator of this document (may be null)java.lang.StringgetKeywords()Get the keywords of this document as a comma separated list (may be null)java.lang.StringgetLanguage()Get the language of this document (may be null)java.lang.StringgetSubject()Get the subject of this document (may be null)java.lang.StringgetTitle()Get the title of this document (may be null)
-
-
-
Constructor Detail
-
MetaData
public MetaData(OfficeDocument oooDoc)
Construct a new instance from an OOo Writer document.
- Parameters:
oooDoc- is the OOo document
-
-
Method Detail
-
getTitle
public java.lang.String getTitle()
Get the title of this document (may be null)
- Returns:
- the title of the document
-
getCreator
public java.lang.String getCreator()
Get the creator of this document (may be null)
- Returns:
- the creator of the document (or the initial creator if none is specified)
-
getInitialCreator
public java.lang.String getInitialCreator()
Get the initial creator of this document (may be null)
- Returns:
- the initial creator of the document
-
getDate
public java.lang.String getDate()
Get the date of this document (may be null)
- Returns:
- the date of the document
-
getDescription
public java.lang.String getDescription()
Get the description of this document (may be null)
- Returns:
- the description of the document
-
getLanguage
public java.lang.String getLanguage()
Get the language of this document (may be null)
- Returns:
- the language of the document
-
getSubject
public java.lang.String getSubject()
Get the subject of this document (may be null)
- Returns:
- the subject of the document
-
getKeywords
public java.lang.String getKeywords()
Get the keywords of this document as a comma separated list (may be null)
- Returns:
- the keywords of the document
-
-