org.stanwood.media
Class Author

java.lang.Object
  extended by org.stanwood.media.Author

public class Author
extends java.lang.Object

Used to store author information


Constructor Summary
Author(java.lang.String name, java.lang.String email, java.lang.String description)
          The constructor
 
Method Summary
 java.lang.String getDescription()
          Used to get the description of the author's role on the project
 java.lang.String getEmail()
          Used to get the email of the author
 java.lang.String getName()
          Used to get the name of the author
 void setDescription(java.lang.String description)
          Used to set the description of the author's role on the project
 void setEmail(java.lang.String email)
          Used to set the email of the author
 void setName(java.lang.String name)
          Used to set the name of the author
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Author

public Author(java.lang.String name,
              java.lang.String email,
              java.lang.String description)
The constructor

Parameters:
name - The name of the author
email - The email of the author
description - The description of the author's role on the project
Method Detail

getName

public java.lang.String getName()
Used to get the name of the author

Returns:
The name of the author

setName

public void setName(java.lang.String name)
Used to set the name of the author

Parameters:
name - The name of the author

getEmail

public java.lang.String getEmail()
Used to get the email of the author

Returns:
The email of the author

setEmail

public void setEmail(java.lang.String email)
Used to set the email of the author

Parameters:
email - The email of the author

getDescription

public java.lang.String getDescription()
Used to get the description of the author's role on the project

Returns:
the description of the author's role on the project

setDescription

public void setDescription(java.lang.String description)
Used to set the description of the author's role on the project

Parameters:
description - the description of the author's role on the project