⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stuff.java

📁 好东西,hibernate-3.2.0,他是一开元的树杖hibernate-3.2.0
💻 JAVA
字号:
//$Id: Stuff.java 4599 2004-09-26 05:18:27Z oneovthafew $
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -