View Javadoc

1   package FIPA;
2   
3   
4   /***
5   * FIPA/OptTransportBehaviourTypeHolder.java
6   * Generated by the IDL-to-Java compiler (portable), version "3.0"
7   * from FIPA.idl
8   * 09 March 2001 16:39:32 o'clock GMT
9   */
10  
11  public final class OptTransportBehaviourTypeHolder implements org.omg.CORBA.portable.Streamable
12  {
13    public FIPA.Property value[][] = null;
14  
15    public OptTransportBehaviourTypeHolder ()
16    {
17    }
18  
19    public OptTransportBehaviourTypeHolder (FIPA.Property[][] initialValue)
20    {
21      value = initialValue;
22    }
23  
24    public void _read (org.omg.CORBA.portable.InputStream i)
25    {
26      value = FIPA.OptTransportBehaviourTypeHelper.read (i);
27    }
28  
29    public void _write (org.omg.CORBA.portable.OutputStream o)
30    {
31      FIPA.OptTransportBehaviourTypeHelper.write (o, value);
32    }
33  
34    public org.omg.CORBA.TypeCode _type ()
35    {
36      return FIPA.OptTransportBehaviourTypeHelper.type ();
37    }
38  
39  }