1 package org.omg.DynamicAny; 2 3 4 /** 5 * org/omg/DynamicAny/NameValuePair.java . 6 * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 * from ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 * Saturday, February 9, 2008 9:40:12 AM GMT 9 */ 10 11 public final class NameValuePair implements org.omg.CORBA.portable.IDLEntity 12 { 13 14 /** 15 * The name associated with the Any. 16 */ 17 public String id = null; 18 19 /** 20 * The Any value associated with the name. 21 */ 22 public org.omg.CORBA.Any value = null; 23 24 public NameValuePair () 25 { 26 } // ctor 27 28 public NameValuePair (String _id, org.omg.CORBA.Any _value) 29 { 30 id = _id; 31 value = _value; 32 } // ctor 33 34 } // class NameValuePair 35