All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.omg.CORBA.ExceptionList

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

public abstract class ExceptionList
extends Object

IDL definition:
interface ExceptionList {
readonly attribute unsigned long count;
void add(
in ::CORBA::TypeCode exc
);
::CORBA::TypeCode item(
in unsigned long index
)
raises(
::CORBA::Bounds
);
void remove(
in unsigned long index
)
raises(
::CORBA::Bounds
);
};


Constructor Index

 o ExceptionList()

Method Index

 o add(TypeCode)

Operation: ::CORBA::ExceptionList::add.

 o count()

Reader for attribute: ::CORBA::ExceptionList::count.

 o item(int)
Returns an item from the list.
 o remove(int)
Removes an item from the exception list.

Constructors

 o ExceptionList
 public ExceptionList()

Methods

 o count
 public abstract int count()

Reader for attribute: ::CORBA::ExceptionList::count.

readonly attribute unsigned long count;

 o add
 public abstract void add(TypeCode exc)

Operation: ::CORBA::ExceptionList::add.

void add(
in ::CORBA::TypeCode exc
);

 o item
 public abstract TypeCode item(int index) throws Bounds
Returns an item from the list.

Operation: ::CORBA::ExceptionList::item.

::CORBA::TypeCode 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
Removes an item from the exception list.

Operation: ::CORBA::ExceptionList::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