| java.lang.Object example.Student
All known Subclasses: example.Prefect,
Student | public class Student (Code) | | Implementation class for the Student bean.
CREATE TABLE amber_query_student (
id INTEGER PRIMARY KEY auto_increment,
name VARCHAR(250),
gender VARCHAR(1),
house INTEGER
);
|
Method Summary | |
public String | getGender() Returns the gender of the student. | public House | getHouse() Returns the House that this Student belongs to. | public long | getId() Gets the id. | public String | getName() Returns the name of the student. | public void | setGender(String gender) Sets the gender of the student. | public void | setHouse(House house) Sets the House this Student belongs to. | public void | setId(long id) Sets the id. | public void | setName(String name) Sets the name of the student. |
getGender | public String getGender()(Code) | | Returns the gender of the student.
|
getHouse | public House getHouse()(Code) | | Returns the House that this Student belongs to.
|
getId | public long getId()(Code) | | Gets the id.
|
getName | public String getName()(Code) | | Returns the name of the student.
|
setGender | public void setGender(String gender)(Code) | | Sets the gender of the student.
|
setHouse | public void setHouse(House house)(Code) | | Sets the House this Student belongs to.
|
setId | public void setId(long id)(Code) | | Sets the id.
|
setName | public void setName(String name)(Code) | | Sets the name of the student.
|
|
|