rodrigo 2012-09-06 20:26:13 +00:00
parent b4221a50ff
commit 6f5c83dcd3
1 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,69 @@
package com.rjconsultores.ventaboletos.vo.configuracioneccomerciales;
public class ConfigCoordenadas {
private String lbCampo;
private String campo;
private Integer linha;
private Integer coluna;
public ConfigCoordenadas() {
super();
}
public String getLbCampo() {
return lbCampo;
}
public void setLbCampo(String lbCampo) {
this.lbCampo = lbCampo;
}
public String getCampo() {
return campo;
}
public void setCampo(String campo) {
this.campo = campo;
}
public Integer getLinha() {
return linha;
}
public void setLinha(Integer linha) {
this.linha = linha;
}
public Integer getColuna() {
return coluna;
}
public void setColuna(Integer coluna) {
this.coluna = coluna;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((campo == null) ? 0 : campo.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ConfigCoordenadas other = (ConfigCoordenadas) obj;
if (campo == null) {
if (other.campo != null)
return false;
} else if (!campo.equals(other.campo))
return false;
return true;
}
}