This commit is contained in:
osp1 2020-04-30 17:59:56 +01:00
commit 42579b785e

View file

@ -30,15 +30,21 @@ import java.util.LinkedList;
*/
public class Application extends javafx.application.Application {
// //////////////// //
// Class variables. //
// //////////////// //
// Dictionary containing all the words.
public static LinkedList<DictionaryEntry> dictionary = new LinkedList<>();
// Practice list containing all the practice words.
public static LinkedList<DictionaryEntry> practiceList = new LinkedList<>();
// Json processor to import and export the json dictionary file.
// JSON processor to import and export the json dictionary file.
private JsonProcessing jsonProcessing = new JsonProcessing();
// ////////////// //
// Class methods. //
// ////////////// //
/**
* @param args
*/
@ -46,6 +52,10 @@ public class Application extends javafx.application.Application {
launch();
}
// //////// //
// Methods. //
// //////// //
/**
* @param stage
* @throws IOException