Searched refs:RowSorter (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DRowSorterEvent.java27 import javax.swing.RowSorter;
31 * a <code>RowSorter</code>. Two types of notification are possible:
40 * @see javax.swing.RowSorter
73 public RowSorterEvent(RowSorter source) {
87 public RowSorterEvent(RowSorter source, Type type,
98 * Returns the source of the event as a <code>RowSorter</code>.
100 * @return the source of the event as a <code>RowSorter</code>
102 public RowSorter getSource() {
103 return (RowSorter)super.getSource();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRowSorter.java32 * <code>RowSorter</code> provides the basis for sorting and filtering.
33 * Beyond creating and installing a <code>RowSorter</code>, you very rarely
36 * implementation of <code>RowSorter</code> for <code>JTable</code>.
38 * <code>RowSorter</code>'s primary role is to provide a mapping between
43 * The view invokes the following methods on the <code>RowSorter</code>:
51 * delivered, so a <code>RowSorter</code> should not update its mapping
59 * <code>RowSorter</code> provides notification of changes by way of
66 * the mapping maintained by the <code>RowSorter</code> has changed in
69 * <code>RowSorter</code> implementations typically don't have a one-to-one
76 * Concrete implementations of <code>RowSorter</cod
95 public abstract class RowSorter<M> { class
101 public RowSorter() { method in class:RowSorter
[all...]
H A DJTable.java96 * {@code RowSorter}.
99 * <li>Directly set the {@code RowSorter}. For example:
103 * creates a {@code RowSorter} for
151 * provided by <code>RowSorter</code> the underlying
153 * rather <code>RowSorter</code> will handle it. Coordinate
157 * <code>RowSorter</code>, which is not necessarily the same as that
160 * using <code>RowSorter</code> you will need to convert using
429 * If true, any time the model changes a new RowSorter is set.
1819 * Specifies whether a {@code RowSorter} should be created for the
1828 * @param autoCreateRowSorter whether or not a {@code RowSorter}
[all...]
H A DDefaultRowSorter.java36 * An implementation of <code>RowSorter</code> that provides sorting and
38 * Beyond creating and installing a <code>RowSorter</code>, you very rarely
41 * implementation of <code>RowSorter</code> for <code>JTable</code>.
112 public abstract class DefaultRowSorter<M, I> extends RowSorter<M> {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableHeaderUI.java243 RowSorter rs = table == null ? null : table.getRowSorter();
244 java.util.List<? extends RowSorter.SortKey> sortKeys = rs == null ? null : rs.getSortKeys();
/openjdk7/jdk/src/share/classes/sun/swing/table/
H A DDefaultTableCellHeaderRenderer.java133 java.util.List<? extends RowSorter.SortKey> sortKeys =
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableHeaderUI.java106 RowSorter sorter;
878 RowSorter sorter = table == null ? null : table.getRowSorter();
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java667 // JList doesn't support RowSorter so far, so we put it into the list model
729 List<? extends RowSorter.SortKey> sortKeys =
735 private void restoreSortKeys(List<? extends RowSorter.SortKey> sortKeys) {
739 RowSorter.SortKey sortKey = sortKeys.get(i);

Completed in 54 milliseconds