Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@97602 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
72d5205d4e
commit
57a02cc08e
|
@ -0,0 +1,31 @@
|
|||
package org.gcube.portlets.user.td.gwtservice.shared.function.aggregate;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @author "Giancarlo Panichi" email: <a
|
||||
* href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
||||
*
|
||||
*/
|
||||
public class TdAggregateFunction extends TdBaseComboDataBean {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 2341132987652197369L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public TdAggregateFunction() {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param id
|
||||
* @param label
|
||||
*/
|
||||
public TdAggregateFunction(String id, String label) {
|
||||
super(id, label);
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,62 @@
|
|||
package org.gcube.portlets.user.td.gwtservice.shared.function.aggregate;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author "Giancarlo Panichi"
|
||||
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
||||
*
|
||||
*/
|
||||
public class TdBaseComboDataBean implements Serializable {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 5022327067102919324L;
|
||||
|
||||
private String id;
|
||||
private String label;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public TdBaseComboDataBean() {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param id
|
||||
* @param label
|
||||
*/
|
||||
public TdBaseComboDataBean(String id, String label) {
|
||||
this.id = id;
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public String label() {
|
||||
return label;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public void setLabel(String label) {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder builder = new StringBuilder();
|
||||
builder.append("TdDataBean [id=");
|
||||
builder.append(id);
|
||||
builder.append(", label=");
|
||||
builder.append(label);
|
||||
builder.append("]");
|
||||
return builder.toString();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue