01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: public interface OperationDefOperations extends
07: org.omg.CORBA.ContainedOperations {
08:
09: public org.omg.CORBA.TypeCode result();
10:
11: public org.omg.CORBA.IDLType result_def();
12:
13: public void result_def(org.omg.CORBA.IDLType result_def);
14:
15: public org.omg.CORBA.ParameterDescription[] params();
16:
17: public void params(org.omg.CORBA.ParameterDescription[] params);
18:
19: public org.omg.CORBA.OperationMode mode();
20:
21: public void mode(org.omg.CORBA.OperationMode mode);
22:
23: public java.lang.String[] contexts();
24:
25: public void contexts(java.lang.String[] contexts);
26:
27: public org.omg.CORBA.ExceptionDef[] exceptions();
28:
29: public void exceptions(org.omg.CORBA.ExceptionDef[] exceptions);
30:
31: }
|