org.ChinaVO.FITSManager.FListView
Interface FListViewDataRequestInterface

All Known Implementing Classes:
FListViewOperator

public interface FListViewDataRequestInterface

FListView needs its user to provide these informations.

Version:
v1.0.0 2009-12-18 9:44:54
Author:
Fany

Method Summary
 FListViewItemCell getCellValue(int row, int col)
          Provide the information in detail view.
The information should be construct in a FListViewItemCell instance.
 javax.swing.Icon getIcon(int mIconType, int i)
          Provide a Icon.
 void reLoadData(boolean isReSort)
           
 

Method Detail

getIcon

javax.swing.Icon getIcon(int mIconType,
                         int i)
Provide a Icon.

Parameters:
mIconType - type of icon.
FCommonList.BIGICON=1 Big Icon
FCommonList.NormalICON=2 Normal Icon
FCommonList.SMALLICON=3 Small Icon
FCommonList.THUMBNAIL=4 Thumbnails
i - index of the item, which needs an icon.
Returns:
a Icon instance.

getCellValue

FListViewItemCell getCellValue(int row,
                               int col)
Provide the information in detail view.
The information should be construct in a FListViewItemCell instance.

Parameters:
row - row position in detail view.
col - column position in detail view.
Returns:
a FListViewItemCell instance.

reLoadData

void reLoadData(boolean isReSort)