Methods Summary |
---|
public boolean | equals(java.lang.Object other)
if ( ! (other instanceof Stuff) ) return false;
Stuff otherStuff = (Stuff) other;
return otherStuff.getId()==id && otherStuff.getFoo().getKey().equals( foo.getKey() ) && otherStuff.getMoreStuff().equals(moreStuff);
|
public FooProxy | getFoo()Returns the foo.
return foo;
|
public long | getId()Returns the id.
return id;
|
public MoreStuff | getMoreStuff()Returns the moreStuff.
return moreStuff;
|
public java.util.TimeZone | getProperty()Returns the property.
return property;
|
public int | hashCode()
return new Long(id).hashCode();
|
public void | setFoo(FooProxy foo)Sets the foo.
this.foo = foo;
|
public void | setId(long id)Sets the id.
this.id = id;
|
public void | setMoreStuff(MoreStuff moreStuff)Sets the moreStuff.
this.moreStuff = moreStuff;
|
public void | setProperty(java.util.TimeZone property)Sets the property.
this.property = property;
|