KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > DynamicAny > NameValuePair


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 JavaDoc
12 {
13
14   /**
15         * The name associated with the Any.
16         */

17   public String JavaDoc id = null;
18
19   /**
20         * The Any value associated with the name.
21         */

22   public org.omg.CORBA.Any JavaDoc value = null;
23
24   public NameValuePair ()
25   {
26   } // ctor
27

28   public NameValuePair (String JavaDoc _id, org.omg.CORBA.Any JavaDoc _value)
29   {
30     id = _id;
31     value = _value;
32   } // ctor
33

34 } // class NameValuePair
35
Popular Tags