All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.omg.CORBA.NamedValue

java.lang.Object
   |
   +----org.omg.CORBA.NamedValue

public abstract class NamedValue
extends Object

IDL definition:
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.)

See Also:
NamedValue, create_list

Constructor Index

 o NamedValue()

Method Index

 o flags()
Get the flags (in, inout, or out) corresponding to the formal parameter.
 o name()
Get the name corresponding to the formal parameter.
 o value()
Get the value corresponding to the formal parameter.

Constructors

 o NamedValue
 public NamedValue()

Methods

 o name
 public abstract String name()
Get the name corresponding to the formal parameter.

Reader for attribute: ::CORBA::NamedValue::name.

readonly attribute ::CORBA::Identifier name;

 o value
 public abstract Any value()
Get the value corresponding to the formal parameter. The value may be modified in place.

Reader for attribute: ::CORBA::NamedValue::value.

readonly attribute any value;

 o flags
 public abstract int flags()
Get the flags (in, inout, or out) corresponding to the formal parameter. The value may be modified in place.

Reader for attribute: ::CORBA::NamedValue::flags.

readonly attribute ::CORBA::Flags flags;

See Also:
ARG_IN, ARG_INOUT, ARG_OUT

All Packages  Class Hierarchy  This Package  Previous  Next  Index