Package org.ujmp.gui.table
Interface ListSelectionModel64
-
- All Superinterfaces:
javax.swing.ListSelectionModel
- All Known Implementing Classes:
FastListSelectionModel64
public interface ListSelectionModel64 extends javax.swing.ListSelectionModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addListSelectionListener(ListSelectionListener64 x)
void
addSelectionInterval(long index0, long index1)
long
getAnchorSelectionIndex64()
long
getLeadSelectionIndex64()
long
getMaxSelectionIndex64()
long
getMinSelectionIndex64()
void
insertIndexInterval(long index, long length, boolean before)
boolean
isSelectedIndex(long index)
void
removeIndexInterval(long index0, long index1)
void
removeListSelectionListener(ListSelectionListener64 x)
void
removeSelectionInterval(long index0, long index1)
void
setAnchorSelectionIndex(long index)
void
setLeadSelectionIndex(long index)
void
setSelectionInterval(long index0, long index1)
-
Methods inherited from interface javax.swing.ListSelectionModel
addListSelectionListener, addSelectionInterval, clearSelection, getAnchorSelectionIndex, getLeadSelectionIndex, getMaxSelectionIndex, getMinSelectionIndex, getSelectedIndices, getSelectedItemsCount, getSelectionMode, getValueIsAdjusting, insertIndexInterval, isSelectedIndex, isSelectionEmpty, removeIndexInterval, removeListSelectionListener, removeSelectionInterval, setAnchorSelectionIndex, setLeadSelectionIndex, setSelectionInterval, setSelectionMode, setValueIsAdjusting
-
-
-
-
Method Detail
-
setSelectionInterval
void setSelectionInterval(long index0, long index1)
-
addSelectionInterval
void addSelectionInterval(long index0, long index1)
-
removeSelectionInterval
void removeSelectionInterval(long index0, long index1)
-
getMinSelectionIndex64
long getMinSelectionIndex64()
-
getMaxSelectionIndex64
long getMaxSelectionIndex64()
-
isSelectedIndex
boolean isSelectedIndex(long index)
-
getAnchorSelectionIndex64
long getAnchorSelectionIndex64()
-
setAnchorSelectionIndex
void setAnchorSelectionIndex(long index)
-
getLeadSelectionIndex64
long getLeadSelectionIndex64()
-
setLeadSelectionIndex
void setLeadSelectionIndex(long index)
-
insertIndexInterval
void insertIndexInterval(long index, long length, boolean before)
-
removeIndexInterval
void removeIndexInterval(long index0, long index1)
-
addListSelectionListener
void addListSelectionListener(ListSelectionListener64 x)
-
removeListSelectionListener
void removeListSelectionListener(ListSelectionListener64 x)
-
-