KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > bull > eclipse > newbean > NameAndPackageValue


1 /*
2  * Created on 12 août 2004
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package com.bull.eclipse.newbean;
8
9
10 /**
11  * @author riase
12  *
13  * TODO To change the template for this generated type comment go to
14  * Window - Preferences - Java - Code Style - Code Templates
15  */

16 public class NameAndPackageValue {
17     private String JavaDoc beanName;
18     private String JavaDoc packageName;
19
20     /**
21      * @return Returns the beanName.
22      */

23     public String JavaDoc getBeanName() {
24         return beanName;
25     }
26     /**
27      * @param beanName The beanName to set.
28      */

29     public void setBeanName(String JavaDoc beanName) {
30         this.beanName = beanName;
31     }
32     /**
33      * @return Returns the packageName.
34      */

35     public String JavaDoc getPackageName() {
36         return packageName;
37     }
38     /**
39      * @param packageName The packageName to set.
40      */

41     public void setPackageName(String JavaDoc packageName) {
42         this.packageName = packageName;
43     }
44 }
45
Popular Tags