Package ui.repl
Class TableManager.SymbolElement
- java.lang.Object
-
- ui.repl.TableManager.SymbolElement
-
- Enclosing class:
- TableManager
public static class TableManager.SymbolElement extends java.lang.ObjectThe SymbolElement class is used store Symbols as rows within a TableView- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Return the name of the Symboljava.lang.StringgetType()Return the type of the Symboljava.lang.StringgetValue()Return the value of the SymbolvoidsetName(java.lang.String name)Set the name of the SymbolvoidsetType(java.lang.String type)Set the type of the SymbolvoidsetValue(java.lang.String value)Set the value of the Symbol
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Return the name of the Symbol- Returns:
- the Symbol name
-
getType
public java.lang.String getType()
Return the type of the Symbol- Returns:
- the Symbol type
-
getValue
public java.lang.String getValue()
Return the value of the Symbol- Returns:
- the Symbol value
-
setName
public void setName(java.lang.String name)
Set the name of the Symbol- Parameters:
name- The Symbol name
-
setType
public void setType(java.lang.String type)
Set the type of the Symbol- Parameters:
type- The Symbol type
-
setValue
public void setValue(java.lang.String value)
Set the value of the Symbol- Parameters:
value- The Symbol value
-
-