1 package FIPA;
2
3
4 /***
5 * FIPA/Property.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
12
13 public final class Property implements org.omg.CORBA.portable.IDLEntity
14 {
15 public String keyword = null;
16 public org.omg.CORBA.Any value = null;
17
18 public Property ()
19 {
20 }
21
22 public Property (String _keyword, org.omg.CORBA.Any _value)
23 {
24 keyword = _keyword;
25 value = _value;
26 }
27
28 }