Class GanttPeople

java.lang.Object
  |
  +--GanttPeople
All Implemented Interfaces:
java.io.Serializable

public class GanttPeople
extends java.lang.Object
implements java.io.Serializable

Class Person

See Also:
Serialized Form

Constructor Summary
GanttPeople()
          Default constructor
GanttPeople(java.lang.String name, java.lang.String mail, int function)
          A util constructor
 
Method Summary
 int getFunction()
          Return the function of the person
 java.lang.String getMail()
          Return the mail of ther person
 java.lang.String getName()
          Return the name of ther person
 void setFunction(int f)
          Change the function of the person
 void setMail(java.lang.String m)
          Change the name of the person
 void setName(java.lang.String n)
          Change the name of the person
 java.lang.String toString()
          Method to String
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GanttPeople

public GanttPeople()
Default constructor


GanttPeople

public GanttPeople(java.lang.String name,
                   java.lang.String mail,
                   int function)
A util constructor

Method Detail

getName

public java.lang.String getName()
Return the name of ther person


setName

public void setName(java.lang.String n)
Change the name of the person


getMail

public java.lang.String getMail()
Return the mail of ther person


setMail

public void setMail(java.lang.String m)
Change the name of the person


getFunction

public int getFunction()
Return the function of the person


setFunction

public void setFunction(int f)
Change the function of the person


toString

public java.lang.String toString()
Method to String

Overrides:
toString in class java.lang.Object