Source Code Cross Referenced for Foo.java in  » EJB-Server-geronimo » plugins » org » apache » geronimo » corba » compiler » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » EJB Server geronimo » plugins » org.apache.geronimo.corba.compiler 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         *
009:         *     http://www.apache.org/licenses/LICENSE-2.0
010:         *
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */package org.apache.geronimo.corba.compiler;
017:
018:        import java.math.BigDecimal;
019:        import java.rmi.Remote;
020:        import java.rmi.RemoteException;
021:
022:        import org.apache.geronimo.corba.compiler.other.BlahEx;
023:        import org.apache.geronimo.corba.compiler.other.CheeseIDLEntity;
024:        import org.apache.geronimo.corba.compiler.other.Donkey;
025:        import org.apache.geronimo.corba.compiler.other.DonkeyEx;
026:        import org.apache.geronimo.corba.compiler.other.Generic$Interface;
027:
028:        /**
029:         * @version $Rev: 451417 $ $Date: 2006-09-29 13:13:22 -0700 (Fri, 29 Sep 2006) $
030:         */
031:        public interface Foo extends Remote {
032:
033:            public void abcdefg_nothing() throws RemoteException;
034:
035:            public void abcdefg_pass_boolean(boolean x) throws RemoteException;
036:
037:            public void abcdefg_pass_char(char x) throws RemoteException;
038:
039:            public void abcdefg_pass_byte(byte x) throws RemoteException;
040:
041:            public void abcdefg_pass_int(int x) throws RemoteException;
042:
043:            public void abcdefg_pass_long(long x) throws RemoteException;
044:
045:            public void abcdefg_pass_float(float x) throws RemoteException;
046:
047:            public void abcdefg_pass_double(double x) throws RemoteException;
048:
049:            public void abcdefg_pass_BigDecimal(BigDecimal x)
050:                    throws RemoteException;
051:
052:            public void abcdefg_pass_Class(Class x) throws RemoteException;
053:
054:            public void abcdefg_pass_CORBA_Object(org.omg.CORBA.Object x)
055:                    throws RemoteException;
056:
057:            public void abcdefg_pass_CORBA_Any(org.omg.CORBA.Any x)
058:                    throws RemoteException;
059:
060:            public void abcdefg_pass_CORBA_TypeCode(org.omg.CORBA.TypeCode x)
061:                    throws RemoteException;
062:
063:            public void abcdefg_pass_CheeseIDLEntity(CheeseIDLEntity x)
064:                    throws RemoteException;
065:
066:            public void abcdefg_pass_GenericInterface(Generic$Interface x)
067:                    throws RemoteException;
068:
069:            public void abcdefg_pass_BlahException(BlahEx x)
070:                    throws RemoteException;
071:
072:            public void abcdefg_pass_BooException(BooException x)
073:                    throws RemoteException;
074:
075:            public boolean abcdefg_return_boolean() throws RemoteException;
076:
077:            public char abcdefg_return_char() throws RemoteException;
078:
079:            public byte abcdefg_return_byte() throws RemoteException;
080:
081:            public int abcdefg_return_int() throws RemoteException;
082:
083:            public long abcdefg_return_long() throws RemoteException;
084:
085:            public float abcdefg_return_float() throws RemoteException;
086:
087:            public double abcdefg_return_double() throws RemoteException;
088:
089:            public BigDecimal abcdefg_return_BigDecimal()
090:                    throws RemoteException;
091:
092:            public Class abcdefg_return_Class() throws RemoteException;
093:
094:            public org.omg.CORBA.Object abcdefg_return_CORBA_Object()
095:                    throws RemoteException;
096:
097:            public org.omg.CORBA.Any abcdefg_return_CORBA_Any()
098:                    throws RemoteException;
099:
100:            public org.omg.CORBA.TypeCode abcdefg_return_CORBA_TypeCode()
101:                    throws RemoteException;
102:
103:            public CheeseIDLEntity abcdefg_return_CheeseIDLEntity()
104:                    throws RemoteException;
105:
106:            public Generic$Interface abcdefg_return_GenericInterface()
107:                    throws RemoteException;
108:
109:            public BlahEx abcdefg_return_BlahException() throws RemoteException;
110:
111:            public BooException abcdefg_return_BooException()
112:                    throws RemoteException;
113:
114:            public boolean abcdefg_pass_return_boolean(boolean x)
115:                    throws RemoteException;
116:
117:            public char abcdefg_pass_return_char(char x) throws RemoteException;
118:
119:            public byte abcdefg_pass_return_byte(byte x) throws RemoteException;
120:
121:            public int abcdefg_pass_return_int(int x) throws RemoteException;
122:
123:            public long abcdefg_pass_return_long(long x) throws RemoteException;
124:
125:            public float abcdefg_pass_return_float(float x)
126:                    throws RemoteException;
127:
128:            public double abcdefg_pass_return_double(double x)
129:                    throws RemoteException;
130:
131:            public BigDecimal abcdefg_pass_return_BigDecimal(BigDecimal x)
132:                    throws RemoteException;
133:
134:            public Class abcdefg_pass_return_Class(Class x)
135:                    throws RemoteException;
136:
137:            public org.omg.CORBA.Object abcdefg_pass_return_CORBA_Object(
138:                    org.omg.CORBA.Object x) throws RemoteException;
139:
140:            public org.omg.CORBA.Any abcdefg_pass_return_CORBA_Any(
141:                    org.omg.CORBA.Any x) throws RemoteException;
142:
143:            public org.omg.CORBA.TypeCode abcdefg_pass_return_CORBA_TypeCode(
144:                    org.omg.CORBA.TypeCode x) throws RemoteException;
145:
146:            public CheeseIDLEntity abcdefg_pass_return_CheeseIDLEntity(
147:                    CheeseIDLEntity x) throws RemoteException;
148:
149:            public void abcdefg_pass_boolean_arr(boolean[] x)
150:                    throws RemoteException;
151:
152:            public void abcdefg_pass_char_arr(char[] x) throws RemoteException;
153:
154:            public void abcdefg_pass_byte_arr(byte[] x) throws RemoteException;
155:
156:            public void abcdefg_pass_int_arr(int[] x) throws RemoteException;
157:
158:            public void abcdefg_pass_long_arr(long[] x) throws RemoteException;
159:
160:            public void abcdefg_pass_float_arr(float[] x)
161:                    throws RemoteException;
162:
163:            public void abcdefg_pass_double_arr(double[] x)
164:                    throws RemoteException;
165:
166:            public void abcdefg_pass_BigDecimal_arr(BigDecimal[] x)
167:                    throws RemoteException;
168:
169:            public void abcdefg_pass_Class_arr(Class[] x)
170:                    throws RemoteException;
171:
172:            public void abcdefg_pass_CORBA_Object_arr(org.omg.CORBA.Object[] x)
173:                    throws RemoteException;
174:
175:            public void abcdefg_pass_CORBA_Any_arr(org.omg.CORBA.Any[] x)
176:                    throws RemoteException;
177:
178:            public void abcdefg_pass_CORBA_TypeCode_arr(
179:                    org.omg.CORBA.TypeCode[] x) throws RemoteException;
180:
181:            public void abcdefg_pass_CheeseIDLEntity_arr(CheeseIDLEntity[] x)
182:                    throws RemoteException;
183:
184:            public void abcdefg_pass_GenericInterface_arr(Generic$Interface[] x)
185:                    throws RemoteException;
186:
187:            public void abcdefg_pass_BlahException_arr(BlahEx[] x)
188:                    throws RemoteException;
189:
190:            public void abcdefg_pass_BooException_arr(BooException[] x)
191:                    throws RemoteException;
192:
193:            public boolean[] abcdefg_return_boolean_arr()
194:                    throws RemoteException;
195:
196:            public char[] abcdefg_return_char_arr() throws RemoteException;
197:
198:            public byte[] abcdefg_return_byte_arr() throws RemoteException;
199:
200:            public int[] abcdefg_return_int_arr() throws RemoteException;
201:
202:            public long[] abcdefg_return_long_arr() throws RemoteException;
203:
204:            public float[] abcdefg_return_float_arr() throws RemoteException;
205:
206:            public double[] abcdefg_return_double_arr() throws RemoteException;
207:
208:            public BigDecimal[] abcdefg_return_BigDecimal_arr()
209:                    throws RemoteException;
210:
211:            public Class[] abcdefg_return_Class_arr() throws RemoteException;
212:
213:            public org.omg.CORBA.Object[] abcdefg_return_CORBA_Object_arr()
214:                    throws RemoteException;
215:
216:            public org.omg.CORBA.Any[] abcdefg_return_CORBA_Any_arr()
217:                    throws RemoteException;
218:
219:            public org.omg.CORBA.TypeCode[] abcdefg_return_CORBA_TypeCode_arr()
220:                    throws RemoteException;
221:
222:            public CheeseIDLEntity[] abcdefg_return_CheeseIDLEntity_arr()
223:                    throws RemoteException;
224:
225:            public Generic$Interface[] abcdefg_return_GenericInterface_arr()
226:                    throws RemoteException;
227:
228:            public BlahEx[] abcdefg_return_BlahException_arr()
229:                    throws RemoteException;
230:
231:            public BooException[] abcdefg_return_BooException_arr()
232:                    throws RemoteException;
233:
234:            public void abcdefg_overload() throws RemoteException;
235:
236:            public void abcdefg_overload(boolean x) throws RemoteException;
237:
238:            public void abcdefg_overload(char x) throws RemoteException;
239:
240:            public void abcdefg_overload(byte x) throws RemoteException;
241:
242:            public void abcdefg_overload(int x) throws RemoteException;
243:
244:            public void abcdefg_overload(long x) throws RemoteException;
245:
246:            public void abcdefg_overload(float x) throws RemoteException;
247:
248:            public void abcdefg_overload(double x) throws RemoteException;
249:
250:            public void abcdefg_overload(String x) throws RemoteException;
251:
252:            public void abcdefg_overload(BigDecimal x) throws RemoteException;
253:
254:            public void abcdefg_overload(Class x) throws RemoteException;
255:
256:            public void abcdefg_overload(Object x) throws RemoteException;
257:
258:            public void abcdefg_overload(org.omg.CORBA.Object x)
259:                    throws RemoteException;
260:
261:            public void abcdefg_overload(org.omg.CORBA.Any x)
262:                    throws RemoteException;
263:
264:            public void abcdefg_overload(org.omg.CORBA.TypeCode x)
265:                    throws RemoteException;
266:
267:            public void abcdefg_overload(CheeseIDLEntity x)
268:                    throws RemoteException;
269:
270:            public void abcdefg_overload(Generic$Interface x)
271:                    throws RemoteException;
272:
273:            public void abcdefg_overload(BlahEx x) throws RemoteException;
274:
275:            public void abcdefg_overload(BooException x) throws RemoteException;
276:
277:            public void abcdefg_overload(boolean[] x) throws RemoteException;
278:
279:            public void abcdefg_overload(char[] x) throws RemoteException;
280:
281:            public void abcdefg_overload(byte[] x) throws RemoteException;
282:
283:            public void abcdefg_overload(int[] x) throws RemoteException;
284:
285:            public void abcdefg_overload(long[] x) throws RemoteException;
286:
287:            public void abcdefg_overload(float[] x) throws RemoteException;
288:
289:            public void abcdefg_overload(double[] x) throws RemoteException;
290:
291:            public void abcdefg_overload(String[] x) throws RemoteException;
292:
293:            public void abcdefg_overload(BigDecimal[] x) throws RemoteException;
294:
295:            public void abcdefg_overload(Class[] x) throws RemoteException;
296:
297:            public void abcdefg_overload(Object[] x) throws RemoteException;
298:
299:            public void abcdefg_overload(org.omg.CORBA.Object[] x)
300:                    throws RemoteException;
301:
302:            public void abcdefg_overload(org.omg.CORBA.Any[] x)
303:                    throws RemoteException;
304:
305:            public void abcdefg_overload(org.omg.CORBA.TypeCode[] x)
306:                    throws RemoteException;
307:
308:            public void abcdefg_overload(CheeseIDLEntity[] x)
309:                    throws RemoteException;
310:
311:            public void abcdefg_overload(Generic$Interface[] x)
312:                    throws RemoteException;
313:
314:            public void abcdefg_overload(BlahEx[] x) throws RemoteException;
315:
316:            public void abcdefg_overload(BooException[] x)
317:                    throws RemoteException;
318:
319:            public void abcdefg_overload(boolean[][] x) throws RemoteException;
320:
321:            public void abcdefg_overload(char[][] x) throws RemoteException;
322:
323:            public void abcdefg_overload(byte[][] x) throws RemoteException;
324:
325:            public void abcdefg_overload(int[][] x) throws RemoteException;
326:
327:            public void abcdefg_overload(long[][] x) throws RemoteException;
328:
329:            public void abcdefg_overload(float[][] x) throws RemoteException;
330:
331:            public void abcdefg_overload(double[][] x) throws RemoteException;
332:
333:            public void abcdefg_overload(String[][] x) throws RemoteException;
334:
335:            public void abcdefg_overload(BigDecimal[][] x)
336:                    throws RemoteException;
337:
338:            public void abcdefg_overload(Class[][] x) throws RemoteException;
339:
340:            public void abcdefg_overload(Object[][] x) throws RemoteException;
341:
342:            public void abcdefg_overload(org.omg.CORBA.Object[][] x)
343:                    throws RemoteException;
344:
345:            public void abcdefg_overload(org.omg.CORBA.Any[][] x)
346:                    throws RemoteException;
347:
348:            public void abcdefg_overload(org.omg.CORBA.TypeCode[][] x)
349:                    throws RemoteException;
350:
351:            public void abcdefg_overload(CheeseIDLEntity[][] x)
352:                    throws RemoteException;
353:
354:            public void abcdefg_overload(Generic$Interface[][] x)
355:                    throws RemoteException;
356:
357:            public void abcdefg_overload(BlahEx[][] x) throws RemoteException;
358:
359:            public void abcdefg_overload(BooException[][] x)
360:                    throws RemoteException;
361:
362:            public void abcdefg_throw_exception() throws RemoteException,
363:                    BlahEx, BooException, DonkeyEx, Donkey;
364:
365:            public void abcdefg_pass_throw_exception(String x)
366:                    throws RemoteException, BlahEx, BooException, DonkeyEx,
367:                    Donkey;
368:
369:            public String abcdefg_return_throw_exception()
370:                    throws RemoteException, BlahEx, BooException, DonkeyEx,
371:                    Donkey;
372:
373:            public String abcdefg_pass_return_throw_exception(String x)
374:                    throws RemoteException, BlahEx, BooException, DonkeyEx,
375:                    Donkey;
376:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.