Incase u still dont no, they must have a couple requirements: atleast 1 contsructor that requires no args and methods that allow you to set and get each property. EX:
<---User.java--->
public class User {
private String fstName = null;
private String lastName = null;
public User() {
}
public void setFstName(String newName) {
this.fstName = newName;
}
public String getFstName() {
return this.fstName;
}
public void setLastName(String newName) {
this.lastName = newName;
}
public String getLastName() {
return last.fstName;
}
}
IronChef -
http://www.freewebs.com/cool_recipes