1 | package Counter; |
2 | public interface Count extends CORBA.Object { |
3 | public int sum() throws CORBA.Exception; |
4 | public void sum(int val) throws CORBA.Exception; |
5 | public int increment() throws CORBA.Exception; |
6 | } |
7 | } |
8 | Note: This code is created automatically by |
9 | IDL->Java pre-compiler from the IDL spec |