KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > openccm > generator > java > ast > api > ClassObject


1 /*====================================================================
2
3 OpenCCM: The Open CORBA Component Model Platform
4 Copyright (C) 2000-2004 INRIA & USTL - LIFL - GOAL
5 Contact: openccm@objectweb.org
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or any later version.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 USA
21
22 Initial developer(s): Christophe Demarey.
23 Contributor(s): ________________________________________.
24
25 ====================================================================*/

26
27 package org.objectweb.openccm.generator.java.ast.api;
28
29 import java.util.ArrayList JavaDoc;
30
31 /**
32  * This is the representation for java Classes.
33  *
34  * @author <a HREF="mailto:Christophe.Demarey@lifl.fr">Christophe Demarey</A>
35  */

36
37 public interface ClassObject
38          extends InterfaceObject
39 {
40     /**
41      * Add an implemented object.
42      *
43      * @param object - The object to add.
44      */

45     public void
46     addImplementedObject(String JavaDoc object);
47
48     /**
49      * Obtain all implemented objects.
50      *
51      * @return A list of implemented objects.
52      */

53     public ArrayList JavaDoc
54     getImplementedObjects();
55
56     /**
57      * Add a constructor.
58      *
59      * @param constr - The constructor to add.
60      */

61     public void
62     addConstructor(ConstructorObject constr);
63
64     /**
65      * Obtain all constructors.
66      *
67      * @return A list of constructors.
68      */

69     public ArrayList JavaDoc
70     getConstructors();
71
72     /**
73      * Add an attribute.
74      *
75      * @param object - The attribute to add.
76      */

77     public void
78     addAttribute(AttributeObject att);
79
80     /**
81      * Obtain all attributes.
82      *
83      * @return A list of attributes.
84      */

85     public ArrayList JavaDoc
86     getAttributes();
87 }
88
Popular Tags