1 package FIPA;
2
3
4 /***
5 * FIPA/OptTransportBehaviourTypeHelper.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 abstract public class OptTransportBehaviourTypeHelper
12 {
13 private static String _id = "IDL:FIPA/OptTransportBehaviourType:1.0";
14
15 public static void insert (org.omg.CORBA.Any a, FIPA.Property[][] that)
16 {
17 org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
18 a.type (type ());
19 write (out, that);
20 a.read_value (out.create_input_stream (), type ());
21 }
22
23 public static FIPA.Property[][] extract (org.omg.CORBA.Any a)
24 {
25 return read (a.create_input_stream ());
26 }
27
28 private static org.omg.CORBA.TypeCode __typeCode = null;
29 synchronized public static org.omg.CORBA.TypeCode type ()
30 {
31 if (__typeCode == null)
32 {
33 __typeCode = FIPA.PropertyHelper.type ();
34 __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
35 __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (FIPA.TransportBehaviourTypeHelper.id (), "TransportBehaviourType", __typeCode);
36 __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (1, __typeCode);
37 __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (FIPA.OptTransportBehaviourTypeHelper.id (), "OptTransportBehaviourType", __typeCode);
38 }
39 return __typeCode;
40 }
41
42 public static String id ()
43 {
44 return _id;
45 }
46
47 public static FIPA.Property[][] read (org.omg.CORBA.portable.InputStream istream)
48 {
49 FIPA.Property value[][] = null;
50 int _len0 = istream.read_long ();
51 if (_len0 > (1))
52 throw new org.omg.CORBA.MARSHAL (0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE);
53 value = new FIPA.Property[_len0][];
54 for (int _o1 = 0;_o1 < value.length; ++_o1)
55 value[_o1] = FIPA.TransportBehaviourTypeHelper.read (istream);
56 return value;
57 }
58
59 public static void write (org.omg.CORBA.portable.OutputStream ostream, FIPA.Property[][] value)
60 {
61 if (value.length > (1))
62 throw new org.omg.CORBA.MARSHAL (0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE);
63 ostream.write_long (value.length);
64 for (int _i0 = 0;_i0 < value.length; ++_i0)
65 FIPA.TransportBehaviourTypeHelper.write (ostream, value[_i0]);
66 }
67
68 }