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

Single

public class Single extends Object implements Serializable

Fields Summary
private String
id
private String
prop
private String
string
private Collection
several
Constructors Summary
Methods Summary
public java.lang.StringgetId()
Returns the id.

return
String

	     	 
	   
		return id;
	
public java.lang.StringgetProp()
Returns the prop.

return
String

		return prop;
	
public java.util.CollectiongetSeveral()
Returns the several.

return
Set

		return several;
	
public java.lang.StringgetString()
Returns the string.

return
String

		return string;
	
public voidsetId(java.lang.String id)
Sets the id.

param
id The id to set

		this.id = id;
	
public voidsetProp(java.lang.String prop)
Sets the prop.

param
prop The prop to set

		this.prop = prop;
	
public voidsetSeveral(java.util.Collection several)
Sets the several.

param
several The several to set

		this.several = several;
	
public voidsetString(java.lang.String string)
Sets the string.

param
string The string to set

		this.string = string;