net.quartzware
Class StringVal

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

public class StringVal
extends Value

Constructs a StringVal.


Field Summary
private  java.lang.String string
           
 
Fields inherited from class net.quartzware.Value
label, parent
 
Constructor Summary
StringVal()
          Constructs an empty StringVal.
StringVal(java.lang.String str)
          Constructs a StringVal with a String 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

string

private java.lang.String string
Constructor Detail

StringVal

public StringVal(java.lang.String str)
Constructs a StringVal with a String value.
Parameters:
str - the name of a String.

StringVal

public StringVal()
Constructs an empty StringVal.
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