package Counter; |
public interface Count extends org.omg.CORBA.Object { |
int sum() throws org.omg.CORBA.SystemException; |
void sum(int arg) throws org.omg.CORBA.SystemException; |
void initSum(int value); |
int increment(); |
} |
Note: This code is created automatically by idltojava pre-compiler from the IDL spec. |