KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > mof > Reflective > NamedValueType


1 package org.omg.mof.Reflective;
2
3
4 /**
5 * org/omg/mof/Reflective/NamedValueType.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from Reflective.idl
8 * lundi 17 mars 2003 15 h 00 CET
9 */

10
11 public final class NamedValueType implements org.omg.CORBA.portable.IDLEntity JavaDoc
12 {
13   public String JavaDoc name = null;
14   public org.omg.CORBA.Any JavaDoc value = null;
15
16   public NamedValueType ()
17   {
18   } // ctor
19

20   public NamedValueType (String JavaDoc _name, org.omg.CORBA.Any JavaDoc _value)
21   {
22     name = _name;
23     value = _value;
24   } // ctor
25

26 } // class NamedValueType
27
Popular Tags