Package org.powertac.visualizer.domain
Class View
- java.lang.Object
-
- org.powertac.visualizer.domain.View
-
- All Implemented Interfaces:
Serializable
@Entity public class View extends Object implements Serializable
A View.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description View()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)ChartgetChart()List<Long>getGraphIdList()StringgetGraphs()LonggetId()StringgetName()UsergetOwner()inthashCode()BooleanisShared()voidsetChart(Chart chart)voidsetGraphs(String graphs)voidsetId(Long id)voidsetName(String name)voidsetOwner(User user)voidsetShared(Boolean shared)StringtoString()
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getGraphs
public String getGraphs()
-
setGraphs
public void setGraphs(String graphs)
-
isShared
public Boolean isShared()
-
setShared
public void setShared(Boolean shared)
-
getOwner
public User getOwner()
-
setOwner
public void setOwner(User user)
-
getChart
public Chart getChart()
-
setChart
public void setChart(Chart chart)
-
-