1 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 2 duplicate and use this code are hereby granted provided that this 3 copyright notice is included.4 *****/5 6 package org.omg.CORBA;7 8 public interface OperationDefOperations extends9 org.omg.CORBA.ContainedOperations {10 11 public org.omg.CORBA.TypeCode result();12 13 public org.omg.CORBA.IDLType result_def();14 public void result_def(org.omg.CORBA.IDLType result_def);15 16 public org.omg.CORBA.ParameterDescription [] params();17 public void params(org.omg.CORBA.ParameterDescription [] params);18 19 public org.omg.CORBA.OperationMode mode();20 public void mode(org.omg.CORBA.OperationMode mode);21 22 public java.lang.String [] contexts();23 public void contexts(java.lang.String [] contexts);24 25 public org.omg.CORBA.ExceptionDef [] exceptions();26 public void exceptions(org.omg.CORBA.ExceptionDef [] exceptions);27 28 }29