Minor updated
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widgetx@87117 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
71c12ea0a8
commit
66552d6d83
|
@ -24,6 +24,7 @@ public class ColumnDefinition implements Serializable {
|
|||
protected boolean visible;
|
||||
protected ColumnType type;
|
||||
protected int position;
|
||||
protected String tooltipMessage;
|
||||
|
||||
protected ColumnKey key;
|
||||
|
||||
|
@ -172,6 +173,15 @@ public class ColumnDefinition implements Serializable {
|
|||
this.key = new ColumnKey(id, index);
|
||||
}
|
||||
|
||||
public String getTooltipMessage() {
|
||||
return tooltipMessage;
|
||||
}
|
||||
|
||||
public void setTooltipMessage(String tooltipMessage) {
|
||||
this.tooltipMessage = tooltipMessage;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
|
@ -196,6 +206,8 @@ public class ColumnDefinition implements Serializable {
|
|||
builder.append(position);
|
||||
builder.append(", key=");
|
||||
builder.append(key);
|
||||
builder.append(", tooltipMessage=");
|
||||
builder.append(tooltipMessage);
|
||||
builder.append("]");
|
||||
return builder.toString();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue