Class TableItemSimple
- java.lang.Object
-
- org.gcube.data.analysis.dataminermanagercl.shared.data.TableItemSimple
-
- All Implemented Interfaces:
Serializable
public class TableItemSimple extends Object implements Serializable
- Author:
- Giancarlo Panichi
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TableItemSimple()TableItemSimple(String id, String name, String description)TableItemSimple(String id, String name, String description, String type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayList<ColumnItem>getColumns()StringgetDescription()StringgetId()StringgetName()StringgetType()booleanisTabularResource()voidsetColumns(ArrayList<ColumnItem> columns)voidsetDescription(String description)voidsetId(String id)voidsetName(String name)voidsetTabularResource(boolean tabularResource)voidsetType(String type)StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getDescription
public String getDescription()
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Parameters:
description- the description to set
-
getType
public String getType()
- Returns:
- the type
-
setType
public void setType(String type)
- Parameters:
type- the type to set
-
getId
public String getId()
- Returns:
- the id
-
setId
public void setId(String id)
- Parameters:
id- the id to set
-
getColumns
public ArrayList<ColumnItem> getColumns()
-
setColumns
public void setColumns(ArrayList<ColumnItem> columns)
-
isTabularResource
public boolean isTabularResource()
-
setTabularResource
public void setTabularResource(boolean tabularResource)
-
-