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

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

 o remove(int)

Operation: ::CORBA::ExceptionList::remove.

Constructors

 o ExceptionList
public ExceptionList()

Methods

 o count
public abstract int count()

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

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

 o add
public abstract void add(TypeCode exc)

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

#pragma prefix "omg.org/CORBA/ExceptionList"
void add(
in ::CORBA::TypeCode exc
);

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

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

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

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

Operation: ::CORBA::ExceptionList::remove.

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index