KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > communicator > admin > controller > ApplicationElement


1 /*
2  * ApplicationElement.java
3  *
4  * Created on April 13, 2003, 9:58 AM
5  */

6
7 package com.quikj.application.communicator.admin.controller;
8
9 /**
10  *
11  * @author bhm
12  */

13 public class ApplicationElement
14 {
15     
16     /** Holds value of property name. */
17     private String JavaDoc name;
18     
19     /** Holds value of property initClass. */
20     private String JavaDoc initClass;
21     
22     /** Holds value of property displayName. */
23     private String JavaDoc displayName;
24     
25     /** Holds value of property forwardName. */
26     private String JavaDoc forwardName;
27     
28     /** Holds value of property params. */
29     private PluginParameters params;
30     
31     /** Creates a new instance of ApplicationElement */
32     public ApplicationElement()
33     {
34     }
35     
36     /** Getter for property name.
37      * @return Value of property name.
38      *
39      */

40     public String JavaDoc getName()
41     {
42         return this.name;
43     }
44     
45     /** Setter for property name.
46      * @param name New value of property name.
47      *
48      */

49     public void setName(String JavaDoc name)
50     {
51         this.name = name;
52     }
53     
54     /** Getter for property initClass.
55      * @return Value of property initClass.
56      *
57      */

58     public String JavaDoc getInitClass()
59     {
60         return this.initClass;
61     }
62     
63     /** Setter for property initClass.
64      * @param initClass New value of property initClass.
65      *
66      */

67     public void setInitClass(String JavaDoc initClass)
68     {
69         this.initClass = initClass;
70     }
71     
72     /** Getter for property displayName.
73      * @return Value of property displayName.
74      *
75      */

76     public String JavaDoc getDisplayName()
77     {
78         return this.displayName;
79     }
80     
81     /** Setter for property displayName.
82      * @param displayName New value of property displayName.
83      *
84      */

85     public void setDisplayName(String JavaDoc displayName)
86     {
87         this.displayName = displayName;
88     }
89     
90     /** Getter for property forwardName.
91      * @return Value of property forwardName.
92      *
93      */

94     public String JavaDoc getForwardName()
95     {
96         return this.forwardName;
97     }
98     
99     /** Setter for property forwardName.
100      * @param forwardName New value of property forwardName.
101      *
102      */

103     public void setForwardName(String JavaDoc forwardName)
104     {
105         this.forwardName = forwardName;
106     }
107     
108     /** Getter for property params.
109      * @return Value of property params.
110      *
111      */

112     public PluginParameters getParams()
113     {
114         return this.params;
115     }
116     
117     /** Setter for property params.
118      * @param params New value of property params.
119      *
120      */

121     public void setParams(PluginParameters params)
122     {
123         this.params = params;
124     }
125     
126 }
127
Popular Tags