KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > kilim > description > TypeImpl


1 package org.objectweb.kilim.description;
2
3 /**
4  * @author horn
5  */

6 public class TypeImpl implements Type {
7     private String JavaDoc name;
8
9     /**
10      * public constructor of types.
11      * @param aName
12      */

13     public TypeImpl(String JavaDoc aName) {
14         name = aName;
15     }
16     
17     /**
18      * @see org.objectweb.kilim.description.Type#getName()
19      */

20     public String JavaDoc getName() {
21         return name;
22     }
23     
24     /**
25      * @see org.objectweb.kilim.description.Type#setName(String)
26      */

27     public void setName(String JavaDoc aName) {
28         name = aName;
29     }
30 }
31
Popular Tags