com.tobesoft.xplatform.data
Interface DataSetListener

All Superinterfaces:
java.util.EventListener

public interface DataSetListener
extends java.util.EventListener

DataSet의 데이터 또는 구조의 변경을 처리하는 EventListener이다.

Author:
Choi, Jongkwan

Method Summary
 void dataUpdated(DataSetEvent e)
          데이터가 변경된 경우 호출된다.
 void rowInserted(DataSetEvent e)
          행(row)이 추가된 경우 호출된다.
 void rowRemoved(DataSetEvent e)
          행(row)이 삭제된 경우 호출된다.
 void structureChanged(DataSetEvent e)
          열(column)의 추가등 구조가 변경된 경우 호출된다.
 

Method Detail

structureChanged

public void structureChanged(DataSetEvent e)
열(column)의 추가등 구조가 변경된 경우 호출된다.


dataUpdated

public void dataUpdated(DataSetEvent e)
데이터가 변경된 경우 호출된다.


rowInserted

public void rowInserted(DataSetEvent e)
행(row)이 추가된 경우 호출된다.


rowRemoved

public void rowRemoved(DataSetEvent e)
행(row)이 삭제된 경우 호출된다.



Copyright © 2000-2011 TOBESOFT Co., Ltd.