public class Author
extends java.lang.Object
Constructor and Description |
---|
Author(java.lang.String name,
java.lang.String email,
java.lang.String description)
The constructor
|
Modifier and Type | Method and Description |
---|---|
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
|
public Author(java.lang.String name, java.lang.String email, java.lang.String description)
name
- The name of the authoremail
- The email of the authordescription
- The description of the author's role on the projectpublic java.lang.String getName()
public void setName(java.lang.String name)
name
- The name of the authorpublic java.lang.String getEmail()
public void setEmail(java.lang.String email)
email
- The email of the authorpublic java.lang.String getDescription()
public void setDescription(java.lang.String description)
description
- the description of the author's role on the project