single.java
来自「hibernate 开源框架的代码 jar包希望大家能喜欢」· Java 代码 · 共 94 行
JAVA
94 行
//$Id: Single.java 4599 2004-09-26 05:18:27Z oneovthafew $package org.hibernate.test.legacy;import java.io.Serializable;import java.util.Collection;import java.util.HashSet;public class Single implements Serializable { private String id; private String prop; private String string; private Collection several = new HashSet(); /** * Returns the id. * @return String */ public String getId() { return id; } /** * Returns the prop. * @return String */ public String getProp() { return prop; } /** * Returns the several. * @return Set */ public Collection getSeveral() { return several; } /** * Sets the id. * @param id The id to set */ public void setId(String id) { this.id = id; } /** * Sets the prop. * @param prop The prop to set */ public void setProp(String prop) { this.prop = prop; } /** * Sets the several. * @param several The several to set */ public void setSeveral(Collection several) { this.several = several; } /** * Returns the string. * @return String */ public String getString() { return string; } /** * Sets the string. * @param string The string to set */ public void setString(String string) { this.string = string; } /*public boolean equals(Object other) { if ( !(other instanceof Single) ) return false; return ( (Single) other ).id.equals(id) && ( (Single) other ).string.equals(string); } public int hashCode() { return id.hashCode(); }*/ }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?