tabular-data-column-widget/src/main/java/org/gcube/portlets/user/td/columnwidget/client/store/ShowOccurrencesTypeElement....

54 lines
721 B
Java

package org.gcube.portlets.user.td.columnwidget.client.store;
/**
*
* @author "Giancarlo Panichi"
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class ShowOccurrencesTypeElement {
protected int id; // For insert in table only
protected String type;
public ShowOccurrencesTypeElement(int id,String type){
this.id=id;
this.type=type;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public String toString() {
return "ShowOccurrencesTypeElement [id=" + id + ", type=" + type + "]";
}
}