Class ITextHeader
- java.lang.Object
-
- org.apache.maven.doxia.module.itext.ITextHeader
-
public class ITextHeader extends java.lang.ObjectHeader object containing meta-informations.- Version:
- $Id: ITextHeader.java 1438269 2013-01-24 23:47:50Z olamy $
- Author:
- Vincent Siveton
-
-
Constructor Summary
Constructors Constructor Description ITextHeader()Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAuthor(java.lang.String author)Add a new authorjava.lang.StringgetAuthors()Get the authorsjava.lang.StringgetDate()Get the date of the documentjava.lang.StringgetTitle()Get the titlevoidsetDate(java.lang.String date1)Add a date to the documentvoidsetTitle(java.lang.String title1)Add a title to the Document
-
-
-
Method Detail
-
setTitle
public final void setTitle(java.lang.String title1)
Add a title to the Document- Parameters:
title1- the title.
-
getTitle
public java.lang.String getTitle()
Get the title- Returns:
- title as String
-
addAuthor
public void addAuthor(java.lang.String author)
Add a new author- Parameters:
author- the author.
-
getAuthors
public java.lang.String getAuthors()
Get the authors- Returns:
- the authors as String
-
setDate
public void setDate(java.lang.String date1)
Add a date to the document- Parameters:
date1- a date as String
-
getDate
public java.lang.String getDate()
Get the date of the document- Returns:
- the date as String
-
-