1 | package Counter; |
2 | public class _st_Count extends CORBA.Stub |
3 | implements Count { |
4 | public int increment() { |
5 | CORBA.IOStream _stream = this._create_request("increment",true); |
6 | _invoke(_stream,true); |
7 | int _result = _stream.read_int(); |
8 | return _result; |
9 | } |
10 | public int sum() { ... } |
11 | Note: This code is created automatically by |
12 | IDL->Java pre-compiler from the IDL spec |