net.sourceforge.pavlov.library
Class LibraryDocument

java.lang.Object
  extended by net.sourceforge.pavlov.library.LibraryDocument
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Book, Chapter

public class LibraryDocument
extends Object
implements Serializable

See Also:
Serialized Form

Field Summary
protected  String author
          Name of the author/maintainer of this document.
protected  String description
          Textual description of this document's content.
protected  String name
          Descriptive name of this document.
 
Constructor Summary
LibraryDocument()
           
 
Method Summary
 String getAuthor()
          Returns name of the author/maintainer of this book.
 String getDescription()
          Returns textual description of this book's contents.
 String getName()
          Returns descriptive name of this book.
 void setAuthor(String n)
          Sets name of the author/maintainer of this book.
 void setDescription(String n)
          Sets textual description of this book's contents.
 void setName(String n)
          Sets descriptive name of this book.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

protected String name
Descriptive name of this document.


author

protected String author
Name of the author/maintainer of this document.


description

protected String description
Textual description of this document's content.

Constructor Detail

LibraryDocument

public LibraryDocument()
Method Detail

setName

public void setName(String n)
Sets descriptive name of this book.

Parameters:
n - a String value

getName

public String getName()
Returns descriptive name of this book.

Returns:
a String value

setAuthor

public void setAuthor(String n)
Sets name of the author/maintainer of this book.

Parameters:
n - a String value

getAuthor

public String getAuthor()
Returns name of the author/maintainer of this book.

Returns:
a String value

setDescription

public void setDescription(String n)
Sets textual description of this book's contents.

Parameters:
n - a String value

getDescription

public String getDescription()
Returns textual description of this book's contents.

Returns:
a String value