net.quartzware
Class IntegerValue

java.lang.Object
  |
  +--net.quartzware.Value
        |
        +--net.quartzware.IntegerValue

public class IntegerValue
extends Value

Constructs and holds information on an Integer Value.


Field Summary
private  java.lang.Integer intVal
           
 
Fields inherited from class net.quartzware.Value
label, parent
 
Constructor Summary
IntegerValue()
          Constructs an empty IntegerValue.
IntegerValue(int val)
          Constructs an IntegerValue with a value of type int.
IntegerValue(java.lang.Integer val)
          Constructs an IntegerValue with a value of type Integer.
 
Method Summary
 void editValue()
          This is the function that will be called whenever the user wishes to edit a value from the Editor Window
 
Methods inherited from class net.quartzware.Value
getLabel
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

intVal

private java.lang.Integer intVal
Constructor Detail

IntegerValue

public IntegerValue(java.lang.Integer val)
Constructs an IntegerValue with a value of type Integer.
Parameters:
val - the name of a Integer value

IntegerValue

public IntegerValue(int val)
Constructs an IntegerValue with a value of type int.
Parameters:
val - the name of a int value

IntegerValue

public IntegerValue()
Constructs an empty IntegerValue.
Method Detail

editValue

public void editValue()
This is the function that will be called whenever the user wishes to edit a value from the Editor Window
Overrides:
editValue in class Value