Added JavaDoc to the Dictionary Controller. Issue #37
This commit is contained in:
parent
c43d7184ae
commit
d83f9e6da1
1 changed files with 8 additions and 2 deletions
|
@ -62,7 +62,10 @@ public class DictionaryController extends SharedCodeController {
|
||||||
public ObservableList<DictionaryEntry> list = FXCollections.observableArrayList();
|
public ObservableList<DictionaryEntry> list = FXCollections.observableArrayList();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Method to switch the language used to sort the dictionary list.
|
||||||
|
* <p>
|
||||||
|
* If currently sorted by English, this will change the sort to by Welsh.
|
||||||
|
* If currently sorted by Welsh, this will change the sort to by English.
|
||||||
*/
|
*/
|
||||||
@FXML
|
@FXML
|
||||||
private void switchLangSort() {
|
private void switchLangSort() {
|
||||||
|
@ -97,7 +100,10 @@ public class DictionaryController extends SharedCodeController {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Method to switch the alphabetical order used to sort the dictionary list.
|
||||||
|
* <p>
|
||||||
|
* If currently sorted by A-Z, this will change the sort to by Z-A.
|
||||||
|
* If currently sorted by Z-A, this will change the sort to by A-Z.
|
||||||
*/
|
*/
|
||||||
@FXML
|
@FXML
|
||||||
private void switchAlphaSort() {
|
private void switchAlphaSort() {
|
||||||
|
|
Reference in a new issue