Main Page | Packages | Class Hierarchy | Class List | Directories | File List | Class Members | Related Pages

ParameterArray Class Reference

Inheritance diagram for ParameterArray:

Inheritance graph
[legend]
Collaboration diagram for ParameterArray:

Collaboration graph
[legend]
List of all members.

Detailed Description

An container for an array of generator parameters and associated info.

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

Member Function Documentation

String getDescription  )  [inherited]
 

Return the description

Definition at line 28 of file Parameter.java.

00028                                   {
00029     return description;
00030     }

int getMaxIndex  ) 
 

Get the lower bound of the array.

Definition at line 35 of file ParameterArray.java.

00035                             {
00036     return maxIndex;
00037     }

int getMinIndex  ) 
 

Get the lower bound of the array.

Definition at line 29 of file ParameterArray.java.

00029                             {
00030     return minIndex;
00031     }

String getName  )  [inherited]
 

Return the name

Deprecated:

Definition at line 15 of file Parameter.java.

00015                            {
00016     return name;
00017     }

void setDescription String  indescription  )  [inherited]
 

Set the description.

Definition at line 34 of file Parameter.java.

00034                                                     {
00035     description=indescription;
00036     }

void setMaxIndex int  i  ) 
 

Set the upper bound of the array.

Definition at line 23 of file ParameterArray.java.

References ParameterArray.maxIndex.

00023                                   {
00024     maxIndex=i;
00025     }

void setMinIndex int  i  ) 
 

Set the lower bound of the array.

Definition at line 17 of file ParameterArray.java.

References ParameterArray.minIndex.

00017                                   {
00018     minIndex=i;
00019     }

void setName String  inname  )  [inherited]
 

Set the name.

Deprecated:

Definition at line 22 of file Parameter.java.

00022                                       {
00023     name=inname;
00024     }


Member Data Documentation

String description [protected, inherited]
 

Definition at line 9 of file Parameter.java.

int maxIndex [protected]
 

Definition at line 11 of file ParameterArray.java.

Referenced by ParameterArray.setMaxIndex().

int minIndex [protected]
 

Definition at line 12 of file ParameterArray.java.

Referenced by ParameterArray.setMinIndex().

String name [protected, inherited]
 

Definition at line 8 of file Parameter.java.


The documentation for this class was generated from the following file:

Generated Wed Jan 17 09:14:27 GMT 2007