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

ParameterArray.java

Go to the documentation of this file.
00001 package cedar.jetweb.generator;
00002 
00003 import java.util.HashMap;
00004 
00009 public abstract class ParameterArray extends Parameter {
00010 
00011     protected int maxIndex;
00012     protected int minIndex;
00013 
00017     public void setMinIndex(int i){
00018     minIndex=i;
00019     }
00023     public void setMaxIndex(int i){
00024     maxIndex=i;
00025     }
00029     public int getMinIndex(){
00030     return minIndex;
00031     }
00035     public int getMaxIndex(){
00036     return maxIndex;
00037     }
00038 }
00039 

Generated Wed Jan 17 09:14:27 GMT 2007