All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----org.omg.CORBA.NamedValue
interface NamedValue { readonly attribute ::CORBA::Identifier name; readonly attribute any value; readonly attribute ::CORBA::Flags flags; };The NamedValue interface is used to describe parameters in dynamic invocations. Each named argument in a NVList corresponds to one of the formal arguments in the request signature. NamedValues cannot be directly instantiated; new instances are obtained via the NVList interface. (New NVList instances are obtained via the ORB singleton.)
public NamedValue()
public abstract String name()
Reader for attribute: ::CORBA::NamedValue::name.
readonly attribute ::CORBA::Identifier name;
public abstract Any value()
Reader for attribute: ::CORBA::NamedValue::value.
readonly attribute any value;
public abstract int flags()
Reader for attribute: ::CORBA::NamedValue::flags.
readonly attribute ::CORBA::Flags flags;
All Packages Class Hierarchy This Package Previous Next Index