Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@93524 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-03-25 13:57:29 +00:00
parent 89a1553c35
commit 4eee1e4e90
1 changed files with 8 additions and 0 deletions

View File

@ -84,6 +84,14 @@ public class TabResource implements Serializable {
public void setTrId(TRId trId) {
this.trId = trId;
}
public String getTabularResourceType(){
String t="";
if(trId!=null&&trId.getTabularResourceType()!=null){
t=trId.getTabularResourceType();
}
return t;
}
public String getDescription() {
return description;