Interstage Application Server リファレンスマニュアル(API編)
目次 索引 前ページ次ページ

第3章 Javaインタフェース

3.10 ExceptionListクラス

 IDLで定義したオペレーションが発生させる例外を、TypeCodeオブジェクトのリストとして管理するために使用するExceptionListクラスについて説明します(動的呼び出しインタフェースで使用)。

//Java
package org.omg.CORBA;
public abstract class ExceptionList
{ 
    public abstract int  count();
    public abstract void  add(org.omg.CORBA.TypeCode exc);
    public abstract TypeCode  item(int index)
        throws org.omg.CORBA.Bounds;
    public abstract void  remove(int index)
        throws org.omg.CORBA.Bounds;
}

下へ3.10.1 org.omg.CORBA.ExceptionList.count()
下へ3.10.2 org.omg.CORBA.ExceptionList.add()
下へ3.10.3 org.omg.CORBA.ExceptionList.item()
下へ3.10.4 org.omg.CORBA.ExceptionList.remove()

目次 索引 前ページ次ページ

All Rights Reserved, Copyright(C) 富士通株式会社 2005