All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.omg.CORBA.ContextList

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

public abstract class ContextList
extends Object

IDL definition:
interface ContextList {
readonly attribute unsigned long count;
void add(
in string ctx
);
string item(
in unsigned long index
)
raises(
::CORBA::Bounds
);
void remove(
in unsigned long index
)
raises(
::CORBA::Bounds
);
};


Constructor Index

 o ContextList()

Method Index

 o add(String)

Operation: ::CORBA::ContextList::add.

 o count()

Reader for attribute: ::CORBA::ContextList::count.

 o item(int)
Returns an item in the context list.
 o remove(int)
Deletes an item from the context list.

Constructors

 o ContextList
 public ContextList()

Methods

 o count
 public abstract int count()

Reader for attribute: ::CORBA::ContextList::count.

readonly attribute unsigned long count;

 o add
 public abstract void add(String ctx)

Operation: ::CORBA::ContextList::add.

void add(
in string ctx
);

 o item
 public abstract String item(int index) throws Bounds
Returns an item in the context list.

Operation: ::CORBA::ContextList::item.

string item(
in unsigned long index
)
raises(
::CORBA::Bounds
);

Throws: Bounds
If the index parameter is out of range.
 o remove
 public abstract void remove(int index) throws Bounds
Deletes an item from the context list.

Operation: ::CORBA::ContextList::remove.

void remove(
in unsigned long index
)
raises(
::CORBA::Bounds
);

Throws: Bounds
If the index parameter is out of range.

All Packages  Class Hierarchy  This Package  Previous  Next  Index