All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class org.omg.CORBA.NVList

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

public abstract class NVList
extends Object

IDL definition:
#pragma prefix "omg.org/CORBA"
interface NVList {
readonly attribute unsigned long count;
::CORBA::NamedValue add(
in ::CORBA::Flags flags
);
::CORBA::NamedValue add_item(
in ::CORBA::Identifier name,
in ::CORBA::Flags flags
);
::CORBA::NamedValue add_value(
in ::CORBA::Identifier name,
in any value,
in ::CORBA::Flags flags
);
::CORBA::NamedValue item(
in unsigned long index
)
raises(
::CORBA::Bounds
);
void remove(
in unsigned long index
)
raises(
::CORBA::Bounds
);
};


Constructor Index

 o NVList()

Method Index

 o add(int)

Operation: ::CORBA::NVList::add.

 o add_item(String, int)

Operation: ::CORBA::NVList::add_item.

 o add_value(String, Any, int)

Operation: ::CORBA::NVList::add_value.

 o count()

Reader for attribute: ::CORBA::NVList::count.

 o item(int)

Operation: ::CORBA::NVList::item.

 o remove(int)

Operation: ::CORBA::NVList::remove.

Constructors

 o NVList
public NVList()

Methods

 o count
public abstract int count()

Reader for attribute: ::CORBA::NVList::count.

#pragma prefix "omg.org/CORBA/NVList"
readonly attribute unsigned long count;

 o add
public abstract NamedValue add(int flags)

Operation: ::CORBA::NVList::add.

#pragma prefix "omg.org/CORBA/NVList"
::CORBA::NamedValue add(
in ::CORBA::Flags flags
);

 o add_item
public abstract NamedValue add_item(String name,
                                    int flags)

Operation: ::CORBA::NVList::add_item.

#pragma prefix "omg.org/CORBA/NVList"
::CORBA::NamedValue add_item(
in ::CORBA::Identifier name,
in ::CORBA::Flags flags
);

 o add_value
public abstract NamedValue add_value(String name,
                                     Any value,
                                     int flags)

Operation: ::CORBA::NVList::add_value.

#pragma prefix "omg.org/CORBA/NVList"
::CORBA::NamedValue add_value(
in ::CORBA::Identifier name,
in any value,
in ::CORBA::Flags flags
);

 o item
public abstract NamedValue item(int index) throws Bounds

Operation: ::CORBA::NVList::item.

#pragma prefix "omg.org/CORBA/NVList"
::CORBA::NamedValue item(
in unsigned long index
)
raises(
::CORBA::Bounds
);

 o remove
public abstract void remove(int index) throws Bounds

Operation: ::CORBA::NVList::remove.

#pragma prefix "omg.org/CORBA/NVList"
void remove(
in unsigned long index
)
raises(
::CORBA::Bounds
);


All Packages  Class Hierarchy  This Package  Previous  Next  Index