net.quartzware
Class BinaryValue

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

public class BinaryValue
extends Value

Constructs and holds information on a Binary Value.


Field Summary
private  long binVal
           
 
Fields inherited from class net.quartzware.Value
label, parent
 
Constructor Summary
BinaryValue()
          Constructs an empty Binary Value.
BinaryValue(long val)
          Constructs a Binary Value with a given value.
 
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

binVal

private long binVal
Constructor Detail

BinaryValue

public BinaryValue()
Constructs an empty Binary Value.

BinaryValue

public BinaryValue(long val)
Constructs a Binary Value with a given value.
Parameters:
val - the value for Binary Value.
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