net.quartzware
Class IntArray

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

public class IntArray
extends Value

Class representation of an Integer Array


Field Summary
private  java.lang.Integer[] array
           
private  IntArrayDlg dlg
           
 
Fields inherited from class net.quartzware.Value
label, parent
 
Constructor Summary
IntArray()
          Default constructor - created empty array
IntArray(int[] array)
          Constructs the IntArray with a user specified integer array
IntArray(java.lang.Integer[] array)
          Constructs the IntArray with a user specified integer array
IntArray(java.util.Vector array)
          Constructs the IntArray from a user specified vector
 
Method Summary
 void editValue()
          This is the function that will be called whenever the user wishes to edit a value from the Editor Window
private  void showDlg()
          Displays the dialog containing the IntegerArray
 
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

dlg

private IntArrayDlg dlg

array

private java.lang.Integer[] array
Constructor Detail

IntArray

public IntArray(int[] array)
Constructs the IntArray with a user specified integer array
Parameters:
array - the array to be constructed

IntArray

public IntArray(java.lang.Integer[] array)
Constructs the IntArray with a user specified integer array
Parameters:
array - the array to be constructed

IntArray

public IntArray(java.util.Vector array)
Constructs the IntArray from a user specified vector
Parameters:
array - the array to be constructed

IntArray

public IntArray()
Default constructor - created empty array
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

showDlg

private void showDlg()
Displays the dialog containing the IntegerArray