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:
#pragma prefix "omg.org/CORBA"
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)

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

 o remove(int)

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

Constructors

 o ContextList
public ContextList()

Methods

 o count
public abstract int count()

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

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

 o add
public abstract void add(String ctx)

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

#pragma prefix "omg.org/CORBA/ContextList"
void add(
in string ctx
);

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

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

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

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

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

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index