Searched refs:ascending (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/swing/icon/
H A DSortArrowIcon.java47 private boolean ascending; field in class:SortArrowIcon
59 * @param ascending if true, icon respresenting ascending sort, otherwise
63 public SortArrowIcon(boolean ascending, Color color) { argument
64 this.ascending = ascending;
74 * @param ascending if true, icon respresenting ascending sort, otherwise
78 public SortArrowIcon(boolean ascending, String colorKey) { argument
79 this.ascending
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/plaf/windows/
H A DClassicSortArrowIcon.java41 private boolean ascending; field in class:ClassicSortArrowIcon
43 public ClassicSortArrowIcon(boolean ascending) { argument
44 this.ascending = ascending;
49 if (ascending) {
70 if (ascending) {
85 if (!ascending) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/table/
H A DTableModelComparator.java37 private boolean ascending; field in class:TableModelComparator
69 public void setAscending(boolean ascending) { argument
70 this.ascending = ascending;
74 return ascending;
111 return ascending ? result : -result;
H A DSortableTableModel.java54 public void sortByColumn(int column, boolean ascending) { argument
56 comparator.setAscending(ascending);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DTableSorter.java44 private boolean ascending = true; field in class:TableSorter
69 sort(this.sortColumn, this.ascending);
140 +" ascending="+isAscending);
240 sortByColumn(column, !ascending);
243 public void sortByColumn(int column, boolean ascending) { argument
244 this.ascending = ascending;
246 sort(column,ascending);
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableSorter.java76 boolean ascending = true; field in class:TableSorter
192 return ascending ? result : -result;
318 public void sortByColumn(int column, boolean ascending) { argument
319 this.ascending = ascending;
343 boolean ascending = (shiftPressed == 0);
344 sorter.sortByColumn(column, ascending);

Completed in 45 milliseconds