Searched refs:SortKey (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DSortKey.java38 public class SortKey { class
63 public SortKey(String attrID) { method in class:SortKey
82 public SortKey(String attrID, boolean ascendingOrder, method in class:SortKey
H A DSortControl.java105 * @see SortKey
136 super.value = setEncodedValue(new SortKey[]{ new SortKey(sortBy) });
159 SortKey[] sortKeys = new SortKey[sortBy.length];
161 sortKeys[i] = new SortKey(sortBy[i]);
181 public SortControl(SortKey[] sortBy, boolean criticality)
198 private byte[] setEncodedValue(SortKey[] sortKeys) throws IOException {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRowSorter.java166 public abstract void setSortKeys(List<? extends SortKey> keys);
177 public abstract List<? extends SortKey> getSortKeys();
347 * SortKey describes the sort order for a particular column. The
353 public static class SortKey { class in class:RowSorter
358 * Creates a <code>SortKey</code> for the specified column with
366 public SortKey(int column, SortOrder sortOrder) { method in class:RowSorter.SortKey
394 * Returns the hash code for this <code>SortKey</code>.
407 * If the specified object is a <code>SortKey</code> and
412 * @return true if <code>o</code> is equal to this <code>SortKey</code>
418 if (o instanceof SortKey) {
[all...]
H A DDefaultRowSorter.java43 * Sorting is done based on the current <code>SortKey</code>s, in order.
45 * column returns 0) the next <code>SortKey</code> is used. If no
46 * <code>SortKey</code>s remain or the order is <code>UNSORTED</code>, then
141 private SortKey[] cachedSortKeys;
162 private List<SortKey> sortKeys;
298 public void setSortKeys(List<? extends SortKey> sortKeys) {
299 List<SortKey> old = this.sortKeys;
302 for (SortKey key : sortKeys) {
305 throw new IllegalArgumentException("Invalid SortKey");
309 new ArrayList<SortKey>(sortKey
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableHeaderUI.java244 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/sun/swing/
H A DFilePane.java729 List<? extends RowSorter.SortKey> sortKeys =
735 private void restoreSortKeys(List<? extends RowSorter.SortKey> sortKeys) {
739 RowSorter.SortKey sortKey = sortKeys.get(i);

Completed in 46 milliseconds