KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > impl > staticfeatures > ClassCClassImpl


1 /*
2  * Sun Public License Notice
3  *
4  * The contents of this file are subject to the Sun Public License
5  * Version 1.0 (the "License"). You may not use this file except in
6  * compliance with the License. A copy of the License is available at
7  * http://www.sun.com/
8  *
9  * The Original Code is NetBeans. The Initial Developer of the Original
10  * Code is Sun Microsystems, Inc. Portions Copyright 1997-2001 Sun
11  * Microsystems, Inc. All Rights Reserved.
12  */

13 package impl.staticfeatures;
14
15 import javax.jmi.model.*;
16 import javax.jmi.reflect.*;
17
18 import staticfeatures.*;
19 import org.netbeans.mdr.handlers.ClassProxyHandler;
20 import org.netbeans.mdr.storagemodel.StorableClass;
21
22 public abstract class ClassCClassImpl extends ClassProxyHandler implements ClassCClass {
23     
24     // private int fieldC = 0;
25

26     protected ClassCClassImpl(StorableClass storable) {
27         super(storable);
28     }
29     
30     /*
31     public ClassC createClassC () {
32         
33     }
34
35     public int getStaticFieldC () {
36         return fieldC;
37     }
38     
39     public void setStaticFieldC (int value) {
40         fieldC = value;
41     }
42      */

43     
44     public ClassA returnParam (ClassA param) {
45         return param;
46     }
47     
48 }
Popular Tags