| java.lang.Object embedding.model.ProjectMember
ProjectMember | public class ProjectMember (Code) | | This bean represents a project member.
|
ProjectMember | public ProjectMember()(Code) | | Default no-parameter constructor.
|
ProjectMember | public ProjectMember(String name, String function, String email)(Code) | | Convenience constructor.
Parameters: name - name of the project member Parameters: function - function in the team Parameters: email - email address |
getEmail | public String getEmail()(Code) | | Returns the email address.
String the email address |
getFunction | public String getFunction()(Code) | | Returns the function.
String the function |
getName | public String getName()(Code) | | Returns the name.
String the name |
setEmail | public void setEmail(String email)(Code) | | Sets the email address.
Parameters: email - The email address to set |
setFunction | public void setFunction(String function)(Code) | | Sets the function.
Parameters: function - The function to set |
setName | public void setName(String name)(Code) | | Sets the name.
Parameters: name - The name to set |
|
|