stuff.java

来自「介绍了hibernate的入门有一些基本常用的事例」· Java 代码 · 共 94 行

JAVA
94
字号
//$Id: Stuff.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $package org.hibernate.test.legacy;import java.io.Serializable;import java.util.TimeZone;public class Stuff implements Serializable {		public int hashCode() {		return new Long(id).hashCode();	}		public boolean equals(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);	}		private long id;	private FooProxy foo;	private MoreStuff moreStuff;	private TimeZone property;	/**	 * Returns the foo.	 * @return Foo	 */	public FooProxy getFoo() {		return foo;	}		/**	 * Returns the id.	 * @return long	 */	public long getId() {		return id;	}		/**	 * Returns the property.	 * @return TimeZone	 */	public TimeZone getProperty() {		return property;	}		/**	 * Sets the foo.	 * @param foo The foo to set	 */	public void setFoo(FooProxy foo) {		this.foo = foo;	}		/**	 * Sets the id.	 * @param id The id to set	 */	public void setId(long id) {		this.id = id;	}		/**	 * Sets the property.	 * @param property The property to set	 */	public void setProperty(TimeZone property) {		this.property = property;	}		/**	 * Returns the moreStuff.	 * @return MoreStuff	 */	public MoreStuff getMoreStuff() {		return moreStuff;	}		/**	 * Sets the moreStuff.	 * @param moreStuff The moreStuff to set	 */	public void setMoreStuff(MoreStuff moreStuff) {		this.moreStuff = moreStuff;	}	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?