Methods Summary |
---|
public boolean | equals(java.lang.Object other)
return ( (MoreStuff) other ).getIntId()==intId && ( (MoreStuff) other ).getStringId().equals(stringId);
|
public int | getIntId()Returns the intId.
return intId;
|
public java.lang.String | getName()Returns the name.
return name;
|
public java.lang.String | getStringId()Returns the stringId.
return stringId;
|
public java.util.Collection | getStuffs()Returns the stuffs.
return stuffs;
|
public int | hashCode()
return stringId.hashCode();
|
public void | setIntId(int intId)Sets the intId.
this.intId = intId;
|
public void | setName(java.lang.String name)Sets the name.
this.name = name;
|
public void | setStringId(java.lang.String stringId)Sets the stringId.
this.stringId = stringId;
|
public void | setStuffs(java.util.Collection stuffs)Sets the stuffs.
this.stuffs = stuffs;
|