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