/[papo]/gnue/appserver/src/_featuretest/Objects.py
ViewVC logotype

Diff of /gnue/appserver/src/_featuretest/Objects.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by styxman, Fri Nov 8 16:38:42 2002 UTC revision 1.1.4.1 by anthonyl, Tue Mar 4 22:03:55 2003 UTC
# Line 1  Line 1 
1  # GNU Enterprise Application Server -  # GNU Enterprise Application Server -
2  #  #
3  # Copyright 2002 Free Software Foundation, Inc.  # Copyright 2002-2003 Free Software Foundation, Inc.
4  #  #
5  # This file is part of GNU Enterprise.  # This file is part of GNU Enterprise.
6  #  #
# Line 45  class GodlTypedef(GodlObject): Line 45  class GodlTypedef(GodlObject):
45    def __init__(self, parent):    def __init__(self, parent):
46      GodlObject.__init__(self, parent, type='GodlTypedef')      GodlObject.__init__(self, parent, type='GodlTypedef')
47    
48    class GodlAlias(GodlObject):
49      def __init__(self, parent):
50        GodlObject.__init__(self, parent, type='GodlAlias')
51    
52  class GodlStruct(GodlObject):  class GodlStruct(GodlObject):
53    def __init__(self, parent):    def __init__(self, parent):
54      GodlObject.__init__(self, parent, type='GodlStruct')      GodlObject.__init__(self, parent, type='GodlStruct')
55    
56    class GodlMembers(GodlObject):
57      def __init__(self, parent):
58        GodlObject.__init__(self, parent, type='GodlMembers')
59    
60    class GodlMember(GodlObject):
61      def __init__(self, parent):
62        GodlObject.__init__(self, parent, type='GodlMember')
63    
64  class GodlUnion(GodlObject):  class GodlUnion(GodlObject):
65    def __init__(self, parent):    def __init__(self, parent):
66      GodlObject.__init__(self, parent, type='GodlUnion')      GodlObject.__init__(self, parent, type='GodlUnion')
67    
68    class GodlSwitch(GodlObject):
69      def __init__(self, parent):
70        GodlObject.__init__(self, parent, type='GodlSwitch')
71    
72    class GodlCase(GodlObject):
73      def __init__(self, parent):
74        GodlObject.__init__(self, parent, type='GodlCase')
75    
76    class GodlDefault(GodlObject):
77      def __inti__(self, parent):
78        GodlObject.__init__(self, parent, type='GodlDefault')
79    
80  class GodlEnum(GodlObject):  class GodlEnum(GodlObject):
81    def __init__(self, parent):    def __init__(self, parent):
82      GodlObject.__init__(self, parent, type='GodlEnum')      GodlObject.__init__(self, parent, type='GodlEnum')
83    
84    class GodlElement(GodlObject):
85      def __init__(self, parent):
86        GodlObject.__init__(self, parent, type='GodlElement')
87    
88    class GodlConst(GodlObject):
89      def __init__(self, parent):
90        GodlObject.__init__(self, parent, type='GodlConst')
91    
92  class GodlInterface(GodlObject):  class GodlInterface(GodlObject):
93    def __init__(self, parent):    def __init__(self, parent):
94      GodlObject.__init__(self, parent, type='GodlInterface')      GodlObject.__init__(self, parent, type='GodlInterface')
95    
96    class GodlInherits(GodlObject):
97      def __init__(self, parent):
98        GodlObject.__init__(self, parent, type='GodlInherits')
99    
100    class GodlAttribute(GodlObject):
101      def __init__(self, parent):
102        GodlObject.__init__(self, parent, type='GodlAttribute')
103    
104    class GodlOperation(GodlObject):
105      def __init__(self, parent):
106        GodlObject.__init__(self, parent, type='GodlOperation')
107    
108    class GodlReturns(GodlObject):
109      def __init__(self, parent):
110        GodlObject.__init__(self, parent, type='GodlReturns')
111    
112    class GodlParameters(GodlObject):
113      def __init__(self, parent):
114        GodlObject.__init__(self, parent, type='GodlParameters')
115    
116    class GodlParameter(GodlObject):
117      def __init__(self, parent):
118        GodlObject.__init__(self, parent, type='GodlParameter')
119    
120    class GodlRaises(GodlObject):
121      def __init__(self, parent):
122        GodlObject.__init__(self, parent, type='GodlRaises')    
123        
124  class GodlClass(GodlObject):  class GodlClass(GodlObject):
125    def __init__(self, parent):    def __init__(self, parent):
126      GodlObject.__init__(self, parent, type='GodlClass')      GodlObject.__init__(self, parent, type='GodlClass')
127    
128    class GodlExtends(GodlObject):
129      def __init__(self, parent):
130        GodlObject.__init__(self, parent, type='GodlExtends')
131    
132    class GodlExtent(GodlObject):
133      def __init__(self, parent):
134        GodlObject.__init__(self, parent, type='GodlExtent')
135    
136    class GodlRelationship(GodlObject):
137      def __init__(self, parent):
138        GodlObject.__init__(self, parent, type='GodlRelationship')
139    
140    class GodlTarget(GodlObject):
141      def __init__(self, parent):
142        GodlObject.__init__(self, parent, type='GodlTarget')
143    
144    class GodlInverse(GodlObject):
145      def __init__(self, parent):
146        GodlObject.__init__(self, parent, type='GodlInverse')
147    
148    class GodlString(GodlObject):
149      def __init__(self, parent):
150        GodlObject.__init__(self, parent, type='GodlString')
151    
152    class GodlArray(GodlObject):
153      def __init__(self, parent):
154        GodlObject.__init__(self, parent, type='GodlArray')
155    
156    class GodlSequence(GodlObject):
157      def __init__(self, parent):
158        GodlObject.__init__(self, parent, type='GodlSequence')
159    
160    class GodlSet(GodlObject):
161      def __init__(self, parent):
162        GodlObject.__init__(self, parent, type='GodlSet')
163    
164    class GodlBag(GodlObject):
165      def __init__(self, parent):
166        GodlObject.__init__(self, parent, type='GodlBag')
167    
168    class GodlList(GodlObject):
169      def __init__(self, parent):
170        GodlObject.__init__(self, parent, type='GodlList')
171    
172    class GodlDictionary(GodlObject):
173      def __init__(self, parent):
174        GodlObject.__init__(self, parent, type='GodlDictionary')
175    
176    class GodlKey(GodlObject):
177      def __init__(self, parent):
178        GodlObject.__init__(self, parent, type='GodlKey')
179    
180    class GodlValue(GodlObject):
181      def __init__(self, parent):
182        GodlObject.__init__(self, parent, type='GodlValue')    
183        
184  class GodlConst(GodlObject):  class GodlConst(GodlObject):
185    def __init__(self, parent):    def __init__(self, parent):
186      GodlObject.__init__(self, parent, type='GodlConst')      GodlObject.__init__(self, parent, type='GodlConst')
# Line 73  class GodlException(GodlObject): Line 189  class GodlException(GodlObject):
189    def __init__(self, parent):    def __init__(self, parent):
190      GodlObject.__init__(self, parent, type='GodlException')      GodlObject.__init__(self, parent, type='GodlException')
191    
 class GodlAttribute(GodlObject):  
   def __init__(self, parent):  
     GodlObject.__init__(self, parent, type='GodlAttribute')  
   
192  class GodlRelationship(GodlObject):  class GodlRelationship(GodlObject):
193    def __init__(self, parent):    def __init__(self, parent):
194      GodlObject.__init__(self, parent, type='GodlRelationship')      GodlObject.__init__(self, parent, type='GodlRelationship')
   
 class GodlOperation(GodlObject):  
   def __init__(self, parent):  
     GodlObject.__init__(self, parent, type='GodlOperation')  

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.4.1

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26