Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@98724 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-07-17 09:15:35 +00:00
parent f6da612b29
commit 130c25dd8a
1 changed files with 12 additions and 6 deletions

View File

@ -493,8 +493,8 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
}
/**
* Returns ArrayList<ColumnData> other than IdColumnType and
* ValidationColumnType
* Returns ArrayList<ColumnData> other than IdColumnType,
* ValidationColumnType and ViewColumn
*
* {@inheritDoc}
*/
@ -522,8 +522,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
List<Column> cols = table.getColumns();
int i = 0;
// || c.getColumnType() instanceof DimensionColumnType
// || c.getColumnType() instanceof TimeDimensionColumnType
for (Column c : cols) {
if (c.getColumnType() instanceof IdColumnType
|| c.getColumnType() instanceof ValidationColumnType) {
@ -618,7 +617,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
/**
* Returns ArrayList<ColumnData> other than IdColumnType,
* ValidationColumnType, DimensionColumnType and TimeDimensionColumnType
* ValidationColumnType and ViewColumn
*
*
* {@inheritDoc}
@ -4719,6 +4718,8 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
}
/**
* Returns only CodeColumnType, CodeNameColumnType,
* CodeDescriptionColumnType and AnnotationColumnType
*
* {@inheritDoc}
*/
@ -6804,7 +6805,12 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
}
}
/**
*
*
* {@inheritDoc}
*/
@Override
public ColumnData getConnection(RefColumn refColumn)
throws TDGWTServiceException {