Updated TRId

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-unionwizard-widget@100939 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-10-23 16:33:17 +00:00 committed by Giancarlo Panichi
parent 66ef4eae30
commit 57b1fd060e
2 changed files with 4 additions and 4 deletions

View File

@ -67,7 +67,7 @@ public class TabResourcesSelectionPanel extends ContentPanel implements
protected static final ColumnConfig<TabResource, String> nameColumn = new ColumnConfig<TabResource, String>(
properties.name(), 90, "Name");
protected static final ColumnConfig<TabResource, String> typeColumn = new ColumnConfig<TabResource, String>(
properties.tabularResourceType(), 30, "Type");
properties.tabularResourceType(), 30, "Table Type");
protected static final ColumnConfig<TabResource, String> agencyColumn = new ColumnConfig<TabResource, String>(
properties.agency(), 60, "Agency");
protected static final ColumnConfig<TabResource, String> ownerColumn = new ColumnConfig<TabResource, String>(
@ -240,8 +240,8 @@ public class TabResourcesSelectionPanel extends ContentPanel implements
&& item.getName().toLowerCase()
.contains(searchTerm.toLowerCase()))
return true;
if (item.getTabularResourceType() != null
&& item.getTabularResourceType().toLowerCase()
if (item.getTableTypeName() != null
&& item.getTableTypeName().toLowerCase()
.contains(searchTerm.toLowerCase()))
return true;
if (item.getAgency() != null

View File

@ -62,7 +62,7 @@ public class UnionOperationInProgressCard extends WizardCard implements
description.setHTML(1, 0,
"<span style=\"font-weight:bold;\";>Type: </span>");
description.setText(1, 1, unionSession.getUnionTabularResource()
.getTabularResourceType());
.getTableTypeName());
description.setHTML(2, 0,
"<span style=\"font-weight:bold;\";>Owner: </span>");