library-wpoi
b2007093001

org.phosphoresce.library.wpoi.util
クラス PoiProgressMonitor

java.lang.Object
  拡張org.phosphoresce.library.wpoi.util.PoiProgressMonitor

public class PoiProgressMonitor
extends java.lang.Object

POIラッピングフレームワークの処理進捗をフックする抽象クラス
動的値設定時に状況を抽出する場合等に使用することが想定されます。
任意のシステムにおいて当クラスを継承し、setterメソッド等をオーバーライドして 固有の進捗フックモニタクラスとして実装します。

作成者:
Kitagawa

コンストラクタの概要
PoiProgressMonitor()
           
 
メソッドの概要
 int getCount()
          処理カウントを取得します。
 java.lang.String getMessage()
          処理メッセージを取得します。
 int getTotalCount()
          処理トータルカウントを取得します。
 void setCount(int count)
          処理カウントを設定します。
 void setMessage(java.lang.String message)
          処理メッセージを設定します。
 void setTotalCount(int totalCount)
          処理トータルカウントを設定します。
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

PoiProgressMonitor

public PoiProgressMonitor()
メソッドの詳細

getCount

public int getCount()
処理カウントを取得します。

戻り値:
処理カウント

setCount

public void setCount(int count)
処理カウントを設定します。

パラメータ:
count - 処理カウント

getMessage

public java.lang.String getMessage()
処理メッセージを取得します。

戻り値:
処理メッセージ

setMessage

public void setMessage(java.lang.String message)
処理メッセージを設定します。

パラメータ:
message - 処理メッセージ

getTotalCount

public int getTotalCount()
処理トータルカウントを取得します。

戻り値:
処理トータルカウント

setTotalCount

public void setTotalCount(int totalCount)
処理トータルカウントを設定します。

パラメータ:
totalCount - 処理トータルカウント

library-wpoi
b2007093001