ListUIpublic abstract class ListUI extends ComponentUI The {@code JList} pluggable look and feel delegate. |
Methods Summary |
---|
public abstract java.awt.Rectangle | getCellBounds(javax.swing.JList list, int index1, int index2)Returns the bounding rectangle, in the given list's coordinate system,
for the range of cells specified by the two indices.
The indices can be supplied in any order.
If the smaller index is outside the list's range of cells, this method
returns {@code null}. If the smaller index is valid, but the larger
index is outside the list's range, the bounds of just the first index
is returned. Otherwise, the bounds of the valid range is returned.
| public abstract java.awt.Point | indexToLocation(javax.swing.JList list, int index)Returns the origin in the given {@code JList}, of the specified item,
in the list's coordinate system.
Returns {@code null} if the index isn't valid.
| public abstract int | locationToIndex(javax.swing.JList list, java.awt.Point location)Returns the cell index in the specified {@code JList} closest to the
given location in the list's coordinate system. To determine if the
cell actually contains the specified location, compare the point against
the cell's bounds, as provided by {@code getCellBounds}.
This method returns {@code -1} if the list's model is empty.
|
|