6.2.8 JSMListインターフェース

LANSA Integrator

6.2.8 JSMListインターフェース


JSM_COMMAND組み込み関数に対してオプションの作業リスト引数が使用される場合、このインターフェースを使用して作業リストの内容にアクセスできます。

 

public interface JSMList

{

  public int getEntryCount () ;

  public int getMaxEntryCount () ;

 

  public void clear () ;

  public void remove ( int index ) ;

 

  public int getFieldCount () ;

 

  public String[] newEntryArray () ;

  public String[] getEntryArray ( int index ) ;

 

  public String[] getNameArray () ;

  public JSMField[] getFieldArray () ;

 

  public Enumeration getNames () ;

  public Enumeration getFields () ;

 

  public void add ( String[] data ) ;

  public void set ( int index, String[] data ) ;

  public void insert ( int index, String[] data ) ;

}