jmaster.jumploader.model.api.common
Interface IListSelection


public interface IListSelection

IListSelection


Method Summary
 void addListener(IListSelectionListener listener)
          add listener
 int[] getSelectedIndices()
          selected indices retrieval
 java.lang.String[] getSelectedIndicesAsStrings()
          selected indices retrieval as strings
 int getSelectedItemCount()
          selected item count retrieval
 int getSelectedItemIndexAt(int index)
          selected item index retrieval at specified position
 int indexOf(int index)
          retrieve index of specified index
 boolean isIndexSelected(int index)
          check whether specified index is selected
 void removeListener(IListSelectionListener listener)
          remove listener
 void setSelectedIndices(int[] indices)
          selected indices set
 

Method Detail

addListener

void addListener(IListSelectionListener listener)
add listener


removeListener

void removeListener(IListSelectionListener listener)
remove listener


getSelectedIndices

int[] getSelectedIndices()
selected indices retrieval


getSelectedIndicesAsStrings

java.lang.String[] getSelectedIndicesAsStrings()
selected indices retrieval as strings


setSelectedIndices

void setSelectedIndices(int[] indices)
selected indices set


getSelectedItemCount

int getSelectedItemCount()
selected item count retrieval


getSelectedItemIndexAt

int getSelectedItemIndexAt(int index)
selected item index retrieval at specified position


isIndexSelected

boolean isIndexSelected(int index)
check whether specified index is selected


indexOf

int indexOf(int index)
retrieve index of specified index