org.jfree.workbook
Class Summary

java.lang.Object
  |
  +--org.jfree.workbook.Summary

public class Summary
extends java.lang.Object

Records a summary of a workbook.


Field Summary
protected  java.lang.String application
          The application that generated the workbook.
protected  java.lang.String author
          The author or creator of the workbook.
protected  java.lang.String category
          Category.
protected  java.lang.String comments
          Comments.
protected  java.lang.String company
          The company.
protected  java.lang.String keywords
          Related keywords.
protected  java.lang.String manager
          Manager.
protected  java.lang.String title
          The title.
 
Constructor Summary
Summary()
          Constructs a new default summary.
 
Method Summary
 java.lang.String getApplication()
          Returns the application.
 java.lang.String getAuthor()
          Returns the author.
 java.lang.String getCategory()
          Returns the category for the workbook.
 java.lang.String getComments()
          Returns the comments for the workbook.
 java.lang.String getCompany()
          Returns the company.
 java.lang.String getKeywords()
          Returns the keywords for the workbook.
 java.lang.String getManager()
          Returns the manager.
 java.lang.String getTitle()
          Returns the workbook title.
 void setApplication(java.lang.String application)
          Sets the application.
 void setAuthor(java.lang.String author)
          Sets the author.
 void setCategory(java.lang.String category)
          Sets the category for the workbook.
 void setComments(java.lang.String comments)
          Sets the comments for the workbook.
 void setCompany(java.lang.String company)
          Sets the company.
 void setKeywords(java.lang.String keywords)
          Sets the keywords for the workbook.
 void setManager(java.lang.String manager)
          Sets the manager.
 void setTitle(java.lang.String title)
          Sets the workbook title.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

title

protected java.lang.String title
The title.


keywords

protected java.lang.String keywords
Related keywords.


comments

protected java.lang.String comments
Comments.


category

protected java.lang.String category
Category.


manager

protected java.lang.String manager
Manager.


application

protected java.lang.String application
The application that generated the workbook.


author

protected java.lang.String author
The author or creator of the workbook.


company

protected java.lang.String company
The company.

Constructor Detail

Summary

public Summary()
Constructs a new default summary.

Method Detail

getTitle

public java.lang.String getTitle()
Returns the workbook title.

Returns:
The workbook title.

setTitle

public void setTitle(java.lang.String title)
Sets the workbook title.

Parameters:
title - the new title.

getKeywords

public java.lang.String getKeywords()
Returns the keywords for the workbook.

Returns:
The keywords for the workbook.

setKeywords

public void setKeywords(java.lang.String keywords)
Sets the keywords for the workbook.

Parameters:
keywords - the new keywords.

getComments

public java.lang.String getComments()
Returns the comments for the workbook.

Returns:
The comments for the workbook.

setComments

public void setComments(java.lang.String comments)
Sets the comments for the workbook.

Parameters:
comments - the new comments.

getCategory

public java.lang.String getCategory()
Returns the category for the workbook.

Returns:
The category for the workbook.

setCategory

public void setCategory(java.lang.String category)
Sets the category for the workbook.

Parameters:
category - the new category.

getManager

public java.lang.String getManager()
Returns the manager.

Returns:
The manager.

setManager

public void setManager(java.lang.String manager)
Sets the manager.

Parameters:
manager - the new manager.

getApplication

public java.lang.String getApplication()
Returns the application.

Returns:
The application.

setApplication

public void setApplication(java.lang.String application)
Sets the application.

Parameters:
application - the new application.

getAuthor

public java.lang.String getAuthor()
Returns the author.

Returns:
The author.

setAuthor

public void setAuthor(java.lang.String author)
Sets the author.

Parameters:
author - the new author.

getCompany

public java.lang.String getCompany()
Returns the company.

Returns:
The company.

setCompany

public void setCompany(java.lang.String company)
Sets the company.

Parameters:
company - the company.