org.omg.DynamicAny
Class NameDynAnyPair

java.lang.Object
  extended by org.omg.DynamicAny.NameDynAnyPair
All Implemented Interfaces:
Serializable, IDLEntity

public final class NameDynAnyPair
extends Object
implements IDLEntity, Serializable

Stores the named value, representing the name by string and the value by DynAny.

See Also:
Serialized Form

Field Summary
 String id
          The name of the named value.
 DynAny value
          The value of the named value.
 
Constructor Summary
NameDynAnyPair()
          Create unitialised instance with both fields left with default null value.
NameDynAnyPair(String aName, DynAny aValue)
          Create an instance with the given initial values.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

id

public String id
The name of the named value.


value

public DynAny value
The value of the named value.

Constructor Detail

NameDynAnyPair

public NameDynAnyPair()
Create unitialised instance with both fields left with default null value.


NameDynAnyPair

public NameDynAnyPair(String aName,
                      DynAny aValue)
Create an instance with the given initial values.

Parameters:
aName - the name of the named value.
aValue - the value of the named value.