All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
|
+----org.omg.CORBA.ExceptionList
#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
);
};
Operation: ::CORBA::ExceptionList::add.
Reader for attribute: ::CORBA::ExceptionList::count.
Operation: ::CORBA::ExceptionList::item.
Operation: ::CORBA::ExceptionList::remove.
public ExceptionList()
public abstract int count()
Reader for attribute: ::CORBA::ExceptionList::count.
#pragma prefix "omg.org/CORBA/ExceptionList" readonly attribute unsigned long count;
public abstract void add(TypeCode exc)
Operation: ::CORBA::ExceptionList::add.
#pragma prefix "omg.org/CORBA/ExceptionList" void add( in ::CORBA::TypeCode exc );
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 );
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