View Javadoc

1   package test.crispy.example.service.corba;
2   
3   /**
4   * test/crispy/example/service/corba/CalculatorHolder.java .
5   * Generated by the IDL-to-Java compiler (portable), version "3.2"
6   * from Echo.idl
7   * Donnerstag, 13. April 2006 19.25 Uhr CEST
8   */
9   
10  public final class CalculatorHolder implements org.omg.CORBA.portable.Streamable
11  {
12    public test.crispy.example.service.corba.Calculator value = null;
13  
14    public CalculatorHolder ()
15    {
16    }
17  
18    public CalculatorHolder (test.crispy.example.service.corba.Calculator initialValue)
19    {
20      value = initialValue;
21    }
22  
23    public void _read (org.omg.CORBA.portable.InputStream i)
24    {
25      value = test.crispy.example.service.corba.CalculatorHelper.read (i);
26    }
27  
28    public void _write (org.omg.CORBA.portable.OutputStream o)
29    {
30      test.crispy.example.service.corba.CalculatorHelper.write (o, value);
31    }
32  
33    public org.omg.CORBA.TypeCode _type ()
34    {
35      return test.crispy.example.service.corba.CalculatorHelper.type ();
36    }
37  
38  }