📄 statsid.java
字号:
package cn.jsprun.domain;
public class StatsId implements java.io.Serializable {
private static final long serialVersionUID = 4284973411057111038L;
private String type;
private String variable;
public StatsId() {
}
public StatsId(String type, String variable) {
this.type = type;
this.variable = variable;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getVariable() {
return this.variable;
}
public void setVariable(String variable) {
this.variable = variable;
}
public boolean equals(Object other) {
if ( (this == other ) ) return true;
if ( (other == null ) ) return false;
if ( !(other instanceof StatsId) ) return false;
StatsId castOther = ( StatsId ) other;
return ( (this.getType()==castOther.getType()) || ( this.getType()!=null && castOther.getType()!=null && this.getType().equals(castOther.getType()) ) )
&& ( (this.getVariable()==castOther.getVariable()) || ( this.getVariable()!=null && castOther.getVariable()!=null && this.getVariable().equals(castOther.getVariable()) ) );
}
public int hashCode() {
int result = 17;
result = 37 * result + ( getType() == null ? 0 : this.getType().hashCode() );
result = 37 * result + ( getVariable() == null ? 0 : this.getVariable().hashCode() );
return result;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -