View Javadoc

1   // Generated by treedl, version 2.3.1.0-beta-060208
2   // using generator java_factory_null = com.unitesk.atp.treedl.JavaNullFactoryGenerator, version 1.3-stable
3   // from file: TDL.tdl
4   
5   package com.unitesk.atp.treedl;
6   
7   import com.unitesk.atp.treedl.TDL.*;
8   
9   public class TDL_NullFactory implements com.unitesk.atp.treedl.TDL_Factory
10  {
11      public Module createModule
12      ( String optDocomment
13      , java.util.Properties optProperties
14      , com.unitesk.atp.text.location.Position position
15      , boolean isTree
16      , QID name
17      , java.util.List/*BaseModule*/ optBaseModuleList
18      , java.util.List/*String*/ optBaseCustomTypeList
19      , Code optHeader
20      , Code optBody
21      , java.util.List/*ModuleMember*/ optMemberList
22      )
23      {
24          return null;
25      }
26  
27      public BaseModule createBaseModule
28      ( ID optSynonym
29      , QID name
30      )
31      {
32          return null;
33      }
34  
35      public ConstTypeDecl createConstTypeDecl
36      ( String optDocomment
37      , java.util.Properties optProperties
38      , com.unitesk.atp.text.location.Position position
39      , ID name
40      , TypeRef optBaseType
41      , boolean isFlags
42      , java.util.List/*ID*/ optConstantList
43      )
44      {
45          return null;
46      }
47  
48      public NodeTypeDecl createNodeTypeDecl
49      ( String optDocomment
50      , java.util.Properties optProperties
51      , com.unitesk.atp.text.location.Position position
52      , ID name
53      , TypeRef optBaseType
54      , boolean isAbstract
55      , boolean isRoot
56      , java.util.List/*String*/ optBaseCustomTypeList
57      , java.util.List/*NodeMember*/ optMemberList
58      )
59      {
60          return null;
61      }
62  
63      public ConstructorCodeMember createConstructorCodeMember
64      ( String optDocomment
65      , java.util.Properties optProperties
66      , com.unitesk.atp.text.location.Position position
67      , String code
68      )
69      {
70          return null;
71      }
72  
73      public BodyCodeMember createBodyCodeMember
74      ( String optDocomment
75      , java.util.Properties optProperties
76      , com.unitesk.atp.text.location.Position position
77      , String code
78      )
79      {
80          return null;
81      }
82  
83      public Field createField
84      ( String optDocomment
85      , java.util.Properties optProperties
86      , com.unitesk.atp.text.location.Position position
87      , boolean isChild
88      , Modifiers modifiers
89      , Type type
90      , ID name
91      , Code optInitCode
92      , Code optGetCode
93      , Code optSetCode
94      )
95      {
96          return null;
97      }
98  
99      public OperationDecl createOperationDecl
100     ( String optDocomment
101     , java.util.Properties optProperties
102     , com.unitesk.atp.text.location.Position position
103     , ID name
104     , boolean isVirtual
105     , Type returnType
106     , java.util.List/*ParameterDecl*/ optParameterDeclList
107     , java.util.List/*OperationRef*/ optOperationRefList
108     , java.util.List/*Case*/ optCaseList
109     )
110     {
111         return null;
112     }
113 
114     public NonVirtualParameterDecl createNonVirtualParameterDecl
115     ( ID name
116     , Type type
117     )
118     {
119         return null;
120     }
121 
122     public VirtualParameterDecl createVirtualParameterDecl
123     ( ID name
124     , TypeRef type
125     )
126     {
127         return null;
128     }
129 
130     public OperationRef createOperationRef
131     ( ID optModuleName
132     , ID name
133     )
134     {
135         return null;
136     }
137 
138     public Case createCase
139     ( java.util.List/*CaseSignature*/ caseSignatureList
140     , Code code
141     )
142     {
143         return null;
144     }
145 
146     public CaseSignature createCaseSignature
147     ( String optDocomment
148     , java.util.Properties optProperties
149     , com.unitesk.atp.text.location.Position position
150     , java.util.List/*Parameter*/ parameterList
151     )
152     {
153         return null;
154     }
155 
156     public Parameter createParameter
157     ( TypeRef optType
158     , ID name
159     )
160     {
161         return null;
162     }
163 
164     public NodeType createNodeType
165     ( Cardinality cardinality
166     , TypeRef type
167     )
168     {
169         return null;
170     }
171 
172     public PredefinedType createPredefinedType
173     ( Cardinality cardinality
174     , PredefinedTypeKind kind
175     )
176     {
177         return null;
178     }
179 
180     public NameType createNameType
181     ( Cardinality cardinality
182     , String name
183     )
184     {
185         return null;
186     }
187 
188     public TypeRef createTypeRef
189     ( ID optModuleName
190     , ID name
191     )
192     {
193         return null;
194     }
195 
196     public ID createID
197     ( com.unitesk.atp.text.location.Position position
198     , String value
199     , com.unitesk.atp.tree.tool.antlr.LinkedToken token
200     )
201     {
202         return null;
203     }
204 
205     public QID createQID
206     ( java.util.List/*ID*/ idList )
207     {
208         return null;
209     }
210 
211     public Code createCode
212     ( String optDocomment
213     , java.util.Properties optProperties
214     , com.unitesk.atp.text.location.Position position
215     , String code
216     )
217     {
218         return null;
219     }
220 
221 }