FileDocCategorySizeDatePackage
Stuff.javaAPI DocHibernate 3.2.51584Sun Sep 26 00:18:28 BST 2004org.hibernate.test.legacy

Stuff

public class Stuff extends Object implements Serializable

Fields Summary
private long
id
private FooProxy
foo
private MoreStuff
moreStuff
private TimeZone
property
Constructors Summary
Methods Summary
public booleanequals(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 FooProxygetFoo()
Returns the foo.

return
Foo

		return foo;
	
public longgetId()
Returns the id.

return
long

		return id;
	
public MoreStuffgetMoreStuff()
Returns the moreStuff.

return
MoreStuff

		return moreStuff;
	
public java.util.TimeZonegetProperty()
Returns the property.

return
TimeZone

		return property;
	
public inthashCode()

		return new Long(id).hashCode();
	
public voidsetFoo(FooProxy foo)
Sets the foo.

param
foo The foo to set

		this.foo = foo;
	
public voidsetId(long id)
Sets the id.

param
id The id to set

		this.id = id;
	
public voidsetMoreStuff(MoreStuff moreStuff)
Sets the moreStuff.

param
moreStuff The moreStuff to set

		this.moreStuff = moreStuff;
	
public voidsetProperty(java.util.TimeZone property)
Sets the property.

param
property The property to set

		this.property = property;