JavaDoc for PracticeList, Issue #47
This commit is contained in:
parent
d11b4579d4
commit
1c9e73be8e
1 changed files with 9 additions and 6 deletions
|
@ -58,7 +58,10 @@ public class PracticeListController 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() {
|
||||||
|
@ -91,7 +94,10 @@ public class PracticeListController 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() {
|
||||||
|
@ -120,9 +126,6 @@ public class PracticeListController extends SharedCodeController {
|
||||||
* <p>
|
* <p>
|
||||||
* An observable list of DictionaryEntries is loaded from the Application class into a local instance of ObservableList.
|
* An observable list of DictionaryEntries is loaded from the Application class into a local instance of ObservableList.
|
||||||
* It also sets up Lambda expressions related to live searching functionality and the display of DictionaryEntries.
|
* It also sets up Lambda expressions related to live searching functionality and the display of DictionaryEntries.
|
||||||
* <p>
|
|
||||||
* // * @param url
|
|
||||||
* // * @param resourceBundle
|
|
||||||
*
|
*
|
||||||
* @see Application
|
* @see Application
|
||||||
* @see DictionaryEntry
|
* @see DictionaryEntry
|
||||||
|
|
Reference in a new issue