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

Broken

public class Broken extends Object implements Serializable
author
Gavin King

Fields Summary
private Long
id
private String
otherId
private Date
timestamp
Constructors Summary
Methods Summary
public booleanequals(java.lang.Object other)

		if ( !(other instanceof Broken) ) return false;
		Broken that = (Broken) other;
		return this.id.equals(that.id) && this.otherId.equals(that.otherId);
	
public java.lang.LonggetId()

		return id;
	
public java.lang.StringgetOtherId()

		return otherId;
	
public java.util.DategetTimestamp()

		return timestamp;
	
public inthashCode()

		return 1;
	
public voidsetId(java.lang.Long long1)

		id = long1;
	
public voidsetOtherId(java.lang.String string)

		otherId = string;
	
public voidsetTimestamp(java.util.Date date)

		timestamp = date;