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