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

MoreStuff

public class MoreStuff extends Object implements Serializable

Fields Summary
private String
stringId
private int
intId
private Collection
stuffs
private String
name
Constructors Summary
Methods Summary
public booleanequals(java.lang.Object other)

		return ( (MoreStuff) other ).getIntId()==intId && ( (MoreStuff) other ).getStringId().equals(stringId);
	
public intgetIntId()
Returns the intId.

return
int

		return intId;
	
public java.lang.StringgetName()
Returns the name.

return
String

		return name;
	
public java.lang.StringgetStringId()
Returns the stringId.

return
String

		return stringId;
	
public java.util.CollectiongetStuffs()
Returns the stuffs.

return
Collection

		return stuffs;
	
public inthashCode()

		return stringId.hashCode();
	
public voidsetIntId(int intId)
Sets the intId.

param
intId The intId to set

		this.intId = intId;
	
public voidsetName(java.lang.String name)
Sets the name.

param
name The name to set

		this.name = name;
	
public voidsetStringId(java.lang.String stringId)
Sets the stringId.

param
stringId The stringId to set

		this.stringId = stringId;
	
public voidsetStuffs(java.util.Collection stuffs)
Sets the stuffs.

param
stuffs The stuffs to set

		this.stuffs = stuffs;