com.im.ijc.core/1 5.9.4

com.im.ijc.core.api.datatransfer
Interface TableDataTransferObject


public interface TableDataTransferObject

TransferObject (data holder which is put into clipboard) for copy/paste of tabular data.


Method Summary
 DFField getFieldAt(int index)
          Return field at specified position
 List<DFField> getFields()
          Return all fields (columns)
 int getFieldsCount()
          Return number of fields (columns)
 Map<String,Object> getRowAt(int index)
          Return specified row's data.
 int getRowsCount()
          Return number of rows of data in clipboard
 

Method Detail

getFieldsCount

int getFieldsCount()
Return number of fields (columns)


getFields

List<DFField> getFields()
Return all fields (columns)


getFieldAt

DFField getFieldAt(int index)
Return field at specified position


getRowsCount

int getRowsCount()
Return number of rows of data in clipboard


getRowAt

Map<String,Object> getRowAt(int index)
Return specified row's data. Keys of the map are DFItem.getId() and values are real data.


com.im.ijc.core/1 5.9.4