Skip to content

Commit 076ac9b

Browse files
committed
change "sort direction" to "sort order"
1 parent fb6c13e commit 076ac9b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/esri/samples/featurelayers/statistical_query_group_and_sort/StatisticalQueryGroupAndSortController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ private void initializeStatisticDefinitionsTableView() {
120120

121121
/**
122122
* Initializes the Order By table view. Configures the table columns to show the correct field values and allow the
123-
* sort direction of each field to be changed with a ComboBox.
123+
* sort order of each field to be changed with a ComboBox.
124124
*/
125125
private void initializeOrderByTableView() {
126126
// make the table columns stretch to fill the width of the table
@@ -138,7 +138,7 @@ private void initializeOrderByTableView() {
138138
return ct;
139139
});
140140

141-
// switch to edit mode when the user selects the Sort Direction column
141+
// switch to edit mode when the user selects the Sort Order column
142142
orderByTableView.getSelectionModel().selectedItemProperty().addListener(e -> {
143143
List<TablePosition> tablePositions = orderByTableView.getSelectionModel().getSelectedCells();
144144
if (!tablePositions.isEmpty()) {

src/main/resources/fxml/statistical_query_group_and_sort.fxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<TableView fx:id="orderByTableView" editable="true">
8282
<columns>
8383
<TableColumn fx:id="orderByFieldNameTableColumn" text="Field"/>
84-
<TableColumn fx:id="orderBySortOrderTableColumn" text="Sort Direction"/>
84+
<TableColumn fx:id="orderBySortOrderTableColumn" text="Sort Order"/>
8585
</columns>
8686
</TableView>
8787
</VBox>

0 commit comments

Comments
 (0)