📄 locationkey.java
字号:
package salesdb;
/**
* Key class for Entity Bean: Location
*/
public class LocationKey implements java.io.Serializable {
static final long serialVersionUID = 3206093459760846163L;
/**
* Implementation field for persistent attribute: zipcode
*/
public java.lang.String zipcode;
/**
* Creates an empty key for Entity Bean: Location
*/
public LocationKey() {
}
/**
* Creates a key for Entity Bean: Location
*/
public LocationKey(java.lang.String zipcode) {
this.zipcode = zipcode;
}
/**
* Returns true if both keys are equal.
*/
public boolean equals(java.lang.Object otherKey) {
if (otherKey instanceof salesdb.LocationKey) {
salesdb.LocationKey o = (salesdb.LocationKey) otherKey;
return ((this.zipcode.equals(o.zipcode)));
}
return false;
}
/**
* Returns the hash code for the key.
*/
public int hashCode() {
return (zipcode.hashCode());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -