Class SpreadSheetRowContainer
- java.lang.Object
-
- adams.gui.visualization.container.AbstractContainer
-
- adams.gui.visualization.spreadsheet.SpreadSheetRowContainer
-
- All Implemented Interfaces:
IDHandler
,MutableIDHandler
,ColorContainer
,NamedContainer
,VisibilityContainer
,Serializable
,Comparable<AbstractContainer>
public class SpreadSheetRowContainer extends AbstractContainer implements ColorContainer, VisibilityContainer, NamedContainer
A container class for a SpreadSheet Row.- Version:
- $Revision: 8077 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Color
m_Color
the associated color.protected boolean
m_Visible
whether the instance is visible.-
Fields inherited from class adams.gui.visualization.container.AbstractContainer
m_Manager, m_Payload, m_Updating
-
-
Constructor Summary
Constructors Constructor Description SpreadSheetRowContainer(SpreadSheetRowContainerManager manager, SpreadSheetRow data)
Initializes the container.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
assign(SpreadSheetRowContainer c)
Updates itself with the values from given container (the manager is excluded!).int
compareTo(AbstractContainer o)
Compares this object with the specified object for order.Color
getColor()
Returns the current color in use.SpreadSheetRow
getData()
Returns the stored instance.String
getDisplayID()
Returns the displayed container's ID.String
getID()
Returns the container's ID.int
hashCode()
Returns the hashcode of the instance.protected void
initialize()
Initializes members.boolean
isVisible()
Returns whether the instance is visible.void
setColor(Color value)
Sets the color to use.void
setData(SpreadSheetRow value)
Sets the instance.void
setID(String value)
Sets the container's ID.void
setVisible(boolean value)
Sets the instance's visibility.String
toString()
Returns a short string representation of the container.-
Methods inherited from class adams.gui.visualization.container.AbstractContainer
assign, copy, equals, getManager, getPayload, invalidate, postProcessPayload, setManager, setPayload
-
-
-
-
Field Detail
-
m_Color
protected Color m_Color
the associated color.
-
m_Visible
protected boolean m_Visible
whether the instance is visible.
-
-
Constructor Detail
-
SpreadSheetRowContainer
public SpreadSheetRowContainer(SpreadSheetRowContainerManager manager, SpreadSheetRow data)
Initializes the container.- Parameters:
manager
- the owning managerdata
- the instance to encapsulate
-
-
Method Detail
-
initialize
protected void initialize()
Initializes members.- Overrides:
initialize
in classAbstractContainer
-
assign
public void assign(SpreadSheetRowContainer c)
Updates itself with the values from given container (the manager is excluded!).- Parameters:
c
- the container to get the values from
-
setColor
public void setColor(Color value)
Sets the color to use.- Specified by:
setColor
in interfaceColorContainer
- Parameters:
value
- the color
-
getColor
public Color getColor()
Returns the current color in use.- Specified by:
getColor
in interfaceColorContainer
- Returns:
- the color
-
setVisible
public void setVisible(boolean value)
Sets the instance's visibility.- Specified by:
setVisible
in interfaceVisibilityContainer
- Parameters:
value
- if true then the instance will be visible
-
isVisible
public boolean isVisible()
Returns whether the instance is visible.- Specified by:
isVisible
in interfaceVisibilityContainer
- Returns:
- true if the instance is visible
-
setData
public void setData(SpreadSheetRow value)
Sets the instance.- Parameters:
value
- the instance
-
getData
public SpreadSheetRow getData()
Returns the stored instance.- Returns:
- the instance
-
setID
public void setID(String value)
Sets the container's ID.- Specified by:
setID
in interfaceMutableIDHandler
- Specified by:
setID
in interfaceNamedContainer
- Parameters:
value
- the new ID
-
getID
public String getID()
Returns the container's ID.- Specified by:
getID
in interfaceIDHandler
- Specified by:
getID
in interfaceNamedContainer
- Returns:
- the ID
-
getDisplayID
public String getDisplayID()
Returns the displayed container's ID.- Specified by:
getDisplayID
in interfaceNamedContainer
- Returns:
- the displayed ID
-
compareTo
public int compareTo(AbstractContainer o)
Compares this object with the specified object for order. Returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.- Specified by:
compareTo
in interfaceComparable<AbstractContainer>
- Overrides:
compareTo
in classAbstractContainer
- Parameters:
o
- the object to be compared.- Returns:
- a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.
- Throws:
ClassCastException
- if the specified object's type prevents it from being compared to this object.
-
hashCode
public int hashCode()
Returns the hashcode of the instance.
-
toString
public String toString()
Returns a short string representation of the container.- Overrides:
toString
in classAbstractContainer
- Returns:
- a string representation
-
-