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

Parameter.java

Go to the documentation of this file.
00001 package cedar.jetweb.generator;
00002 
00006 public abstract class Parameter {
00007 
00008     protected String name;
00009     protected String description;
00010 
00015     public String getName(){
00016     return name;
00017     }
00022     public void setName(String inname){
00023     name=inname;
00024     }
00028     public String getDescription(){
00029     return description;
00030     }
00034     public void setDescription(String indescription){
00035     description=indescription;
00036     }
00037 }
00038 

Generated Wed Jan 17 09:14:27 GMT 2007