Definition at line 9 of file ParameterArray.java.
Public Member Functions | |
void | setMinIndex (int i) |
void | setMaxIndex (int i) |
int | getMinIndex () |
int | getMaxIndex () |
String | getName () |
void | setName (String inname) |
String | getDescription () |
void | setDescription (String indescription) |
Protected Attributes | |
int | maxIndex |
int | minIndex |
String | name |
String | description |
|
Return the description Definition at line 28 of file Parameter.java. 00028 {
00029 return description;
00030 }
|
|
Get the lower bound of the array. Definition at line 35 of file ParameterArray.java. 00035 {
00036 return maxIndex;
00037 }
|
|
Get the lower bound of the array. Definition at line 29 of file ParameterArray.java. 00029 {
00030 return minIndex;
00031 }
|
|
Return the name
Definition at line 15 of file Parameter.java. 00015 {
00016 return name;
00017 }
|
|
Set the description. Definition at line 34 of file Parameter.java. 00034 { 00035 description=indescription; 00036 }
|
|
Set the upper bound of the array. Definition at line 23 of file ParameterArray.java. References ParameterArray.maxIndex. 00023 { 00024 maxIndex=i; 00025 }
|
|
Set the lower bound of the array. Definition at line 17 of file ParameterArray.java. References ParameterArray.minIndex. 00017 { 00018 minIndex=i; 00019 }
|
|
Set the name.
Definition at line 22 of file Parameter.java. 00022 { 00023 name=inname; 00024 }
|
|
Definition at line 9 of file Parameter.java. |
|
Definition at line 11 of file ParameterArray.java. Referenced by ParameterArray.setMaxIndex(). |
|
Definition at line 12 of file ParameterArray.java. Referenced by ParameterArray.setMinIndex(). |
|
Definition at line 8 of file Parameter.java. |
Generated Wed Jan 17 09:14:27 GMT 2007