FileDocCategorySizeDatePackage
Silly.javaAPI DocHibernate 3.2.5786Fri Mar 10 11:14:22 GMT 2006org.hibernate.test.connections

Silly

public class Silly extends Object implements Serializable
Implementation of Silly.
author
Steve Ebersole

Fields Summary
private Long
id
private String
name
private Other
other
Constructors Summary
public Silly()

	
public Silly(String name)

		this.name = name;
	
public Silly(String name, Other other)

		this.name = name;
		this.other = other;
	
Methods Summary
public java.lang.LonggetId()

		return id;
	
public java.lang.StringgetName()

		return name;
	
public OthergetOther()

		return other;
	
public voidsetId(java.lang.Long id)

		this.id = id;
	
public voidsetName(java.lang.String name)

		this.name = name;
	
public voidsetOther(Other other)

		this.other = other;