From 48765d2c69c013bc801fa4adcf9d8ec95a0145d1 Mon Sep 17 00:00:00 2001 From: YamiDoesDev Date: Wed, 2 Nov 2022 21:46:05 +0100 Subject: [PATCH] updating entire repo --- .gitignore | 2 + .idea/.gitignore | 8 - .idea/algodat-java-intro.iml | 13 - .idea/codeStyles/codeStyleConfig.xml | 5 - .idea/misc.xml | 6 - .idea/modules.xml | 8 - .idea/vcs.xml | 6 - README.md | 12 +- docs/01_hello_world.md | 48 + docs/02_basics.md | 421 +++++++++ docs/03_coding_style.md | 108 +++ docs/04_introduction_to_objects.md | 302 ++++++ docs/05_types_of_objects.md | 286 ++++++ docs/06_java_docs.md | 43 +- out/production/algodat-java-intro/.gitignore | 0 out/production/algodat-java-intro/Main.class | Bin 0 -> 789 bytes out/production/algodat-java-intro/README.md | 17 + .../algodat-java-intro/javadoc/Main.html | 209 +++++ .../javadoc/allclasses-index.html | 69 ++ .../javadoc/allpackages-index.html | 65 ++ .../javadoc/class-use/Main.html | 58 ++ .../javadoc/deprecated-list.html | 77 ++ .../algodat-java-intro/javadoc/element-list | 1 + .../algodat-java-intro/javadoc/help-doc.html | 182 ++++ .../javadoc/index-files/index-1.html | 68 ++ .../javadoc/index-files/index-2.html | 72 ++ .../algodat-java-intro/javadoc/index.html | 26 + .../javadoc/jquery-ui.overrides.css | 34 + .../javadoc/legal/ADDITIONAL_LICENSE_INFO | 37 + .../javadoc/legal/ASSEMBLY_EXCEPTION | 27 + .../algodat-java-intro/javadoc/legal/LICENSE | 347 +++++++ .../javadoc/legal/jquery.md | 72 ++ .../javadoc/legal/jqueryUI.md | 49 + .../javadoc/member-search-index.js | 1 + .../javadoc/module-search-index.js | 1 + .../javadoc/overview-tree.html | 68 ++ .../javadoc/package-search-index.js | 1 + .../javadoc/package-summary.html | 84 ++ .../javadoc/package-tree.html | 68 ++ .../javadoc/package-use.html | 58 ++ .../javadoc/resources/glass.png | Bin 0 -> 499 bytes .../javadoc/resources/x.png | Bin 0 -> 394 bytes .../images/ui-bg_glass_55_fbf9ee_1x400.png | Bin 0 -> 335 bytes .../images/ui-bg_glass_65_dadada_1x400.png | Bin 0 -> 262 bytes .../images/ui-bg_glass_75_dadada_1x400.png | Bin 0 -> 262 bytes .../images/ui-bg_glass_75_e6e6e6_1x400.png | Bin 0 -> 262 bytes .../images/ui-bg_glass_95_fef1ec_1x400.png | Bin 0 -> 332 bytes .../ui-bg_highlight-soft_75_cccccc_1x100.png | Bin 0 -> 280 bytes .../images/ui-icons_222222_256x240.png | Bin 0 -> 6922 bytes .../images/ui-icons_2e83ff_256x240.png | Bin 0 -> 4549 bytes .../images/ui-icons_454545_256x240.png | Bin 0 -> 6992 bytes .../images/ui-icons_888888_256x240.png | Bin 0 -> 6999 bytes .../images/ui-icons_cd0a0a_256x240.png | Bin 0 -> 4549 bytes .../javadoc/script-dir/jquery-3.5.1.min.js | 2 + .../javadoc/script-dir/jquery-ui.min.css | 7 + .../javadoc/script-dir/jquery-ui.min.js | 6 + .../script-dir/jquery-ui.structure.min.css | 5 + .../algodat-java-intro/javadoc/script.js | 132 +++ .../algodat-java-intro/javadoc/search.js | 354 +++++++ .../algodat-java-intro/javadoc/stylesheet.css | 865 ++++++++++++++++++ .../javadoc/tag-search-index.js | 1 + .../javadoc/type-search-index.js | 1 + .../algodat-java-intro/media/Main.pdf | Bin 0 -> 43011 bytes 63 files changed, 4281 insertions(+), 51 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/algodat-java-intro.iml delete mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml create mode 100644 docs/01_hello_world.md create mode 100644 docs/02_basics.md create mode 100644 docs/03_coding_style.md create mode 100644 docs/04_introduction_to_objects.md create mode 100644 docs/05_types_of_objects.md create mode 100644 out/production/algodat-java-intro/.gitignore create mode 100644 out/production/algodat-java-intro/Main.class create mode 100644 out/production/algodat-java-intro/README.md create mode 100644 out/production/algodat-java-intro/javadoc/Main.html create mode 100644 out/production/algodat-java-intro/javadoc/allclasses-index.html create mode 100644 out/production/algodat-java-intro/javadoc/allpackages-index.html create mode 100644 out/production/algodat-java-intro/javadoc/class-use/Main.html create mode 100644 out/production/algodat-java-intro/javadoc/deprecated-list.html create mode 100644 out/production/algodat-java-intro/javadoc/element-list create mode 100644 out/production/algodat-java-intro/javadoc/help-doc.html create mode 100644 out/production/algodat-java-intro/javadoc/index-files/index-1.html create mode 100644 out/production/algodat-java-intro/javadoc/index-files/index-2.html create mode 100644 out/production/algodat-java-intro/javadoc/index.html create mode 100644 out/production/algodat-java-intro/javadoc/jquery-ui.overrides.css create mode 100644 out/production/algodat-java-intro/javadoc/legal/ADDITIONAL_LICENSE_INFO create mode 100644 out/production/algodat-java-intro/javadoc/legal/ASSEMBLY_EXCEPTION create mode 100644 out/production/algodat-java-intro/javadoc/legal/LICENSE create mode 100644 out/production/algodat-java-intro/javadoc/legal/jquery.md create mode 100644 out/production/algodat-java-intro/javadoc/legal/jqueryUI.md create mode 100644 out/production/algodat-java-intro/javadoc/member-search-index.js create mode 100644 out/production/algodat-java-intro/javadoc/module-search-index.js create mode 100644 out/production/algodat-java-intro/javadoc/overview-tree.html create mode 100644 out/production/algodat-java-intro/javadoc/package-search-index.js create mode 100644 out/production/algodat-java-intro/javadoc/package-summary.html create mode 100644 out/production/algodat-java-intro/javadoc/package-tree.html create mode 100644 out/production/algodat-java-intro/javadoc/package-use.html create mode 100644 out/production/algodat-java-intro/javadoc/resources/glass.png create mode 100644 out/production/algodat-java-intro/javadoc/resources/x.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_65_dadada_1x400.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_75_dadada_1x400.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_222222_256x240.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_2e83ff_256x240.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_454545_256x240.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_888888_256x240.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_cd0a0a_256x240.png create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/jquery-3.5.1.min.js create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/jquery-ui.min.css create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/jquery-ui.min.js create mode 100644 out/production/algodat-java-intro/javadoc/script-dir/jquery-ui.structure.min.css create mode 100644 out/production/algodat-java-intro/javadoc/script.js create mode 100644 out/production/algodat-java-intro/javadoc/search.js create mode 100644 out/production/algodat-java-intro/javadoc/stylesheet.css create mode 100644 out/production/algodat-java-intro/javadoc/tag-search-index.js create mode 100644 out/production/algodat-java-intro/javadoc/type-search-index.js create mode 100644 out/production/algodat-java-intro/media/Main.pdf diff --git a/.gitignore b/.gitignore index e69de29..dca84b5 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +Main.java \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/algodat-java-intro.iml b/.idea/algodat-java-intro.iml deleted file mode 100644 index cf572d5..0000000 --- a/.idea/algodat-java-intro.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index a55e7a1..0000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index c3dfb30..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index beb7ffe..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/README.md b/README.md index 209ae67..b80cbf1 100644 --- a/README.md +++ b/README.md @@ -1 +1,11 @@ -# algodat-java-intro +# Crashkurs Java im Modul Algorithmen und Datenstrukturen + +[Generated Website Here](https://yamidoesdev.github.io/algodat-java-intro/) + +## TODO + +* [ ] Debugger +* [ ] Systemeinrichtung +* [ ] Systemvariablen +* [ ] constant and final +* [ ] Pakete diff --git a/docs/01_hello_world.md b/docs/01_hello_world.md new file mode 100644 index 0000000..844012b --- /dev/null +++ b/docs/01_hello_world.md @@ -0,0 +1,48 @@ +# 01: Hello World + +## Approach 1: Simple String Output + +```java +// main.java +public class main { + public static void main(String[] args) { + System.out.println("Hello, World!"); + } +} +``` +```shell +>> javac main.java +>> java main +Hello, World! +``` + +Was sagt dieser Code nun aus? +* Eine Klasse "main" ist öffentlich +* Dem Compiler wird die statische Methode `main` vorlegt + * Diese wird bei jedem Java Code genutzt +* Wir rufen die Klasse System auf und führen einen `println`-Befehl aus +* `Hello, World!` wird in der Konsole ausgegeben + + + +## Approach 2: Using Console Arguments + +```java +// main.java +public class main { + public static void main(String[] args) { + System.out.println(args[0] + " " + args[1]); + } +} +``` +```shell +>> javac main.java +>> java main Hello, World! +Hello, World! +``` + +Was ist nun anders? +* Die Main-Methode übergibt standardmäßig Konsolenargumente als Array vom Typ String mit dem Namen `args` +* Jedes Argument hat einen Index im Array +* Für 2 Argumente rufen wir die ersten zwei Indexes auf, beginnend bei `0` + diff --git a/docs/02_basics.md b/docs/02_basics.md new file mode 100644 index 0000000..1d833ce --- /dev/null +++ b/docs/02_basics.md @@ -0,0 +1,421 @@ +# 02: Basics + +## Table of Contents +1. [Nutzung der Konsole](#nutzung-der-konsole) +2. [Primitive Datentypen](#primitive-datentypen) +3. [Nicht Primitive Datentypen](#) +4. [Operatoren](#) +5. [Bedingungen](#) +6. [Schleifen](#) +7. [Exceptions](#exceptions) + +## Nutzung der Konsole + +### Ausgabe +```java + +System.out.println("print me and create a new line"); +System.out.println(); // prints nothing but creates new line afterwards + +System.out.print("print me without a new line | "); +System.out.print("print me but add a new line \n"); +System.out.print("yeah, this is on the new line! \n"); +System.out.println(); // prints nothing but creates new line afterwards + +// https://www.digitalocean.com/community/tutorials/java-printf-method +System.out.printf("%s %s \n", "parameter 1", "parameter 2"); +System.out.printf("%s %e %f", "10.50", 10.50, 10.50); +``` + +### Eingabe +```java +import java.util.Scanner; + +// class and method : start +Scanner myScanner = new Scanner(System.in); +System.out.print("Enter Username: "); +String username = myScanner.nextLine(); +System.out.print("Enter Password: "); +String password = myScanner.nextLine(); +System.out.println("your Username: " + username + "\nyour password: " + password ); +// class and method : end +``` + +## Primitive Datentypen + +Quelle: [w3schools.com](https://www.w3schools.com/java/java_data_types.asp) + +| Data Type | Size | Description | +|-----------|---------|-------------------------------------------------------------------------------------| +| byte | 1 byte | Stores whole numbers from -128 to 127 | +| short | 2 bytes | Stores whole numbers from -32,768 to 32,767 | +| int | 4 bytes | Stores whole numbers from -2,147,483,648 to 2,147,483,647 | +| long | 8 bytes | Stores whole numbers from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 | +| float | 4 bytes | Stores fractional numbers. Sufficient for storing 6 to 7 decimal digits | +| double | 8 bytes | Stores fractional numbers. Sufficient for storing 15 decimal digits | +| boolean | 1 bit | Stores true or false values | +| char | 2 bytes | Stores a single character/letter or ASCII values | + +### Type Casting + +Bei Type Casting handelt es sich um das überführen eines primitiven Datentypen +in einen anderen. + +Quelle: [w3schools.com](https://www.w3schools.com/java/java_type_casting.asp) + +#### Widening Casting (automatically) + +Hier wird ein kleinerer Typ in einen größeren Typ konvertiert + +`byte` -> `short` -> `char` -> `int` -> `long` -> `float` -> `double` + +```java +int myInt = 9; +double myDouble = myInt; // Automatic casting: int to double + +System.out.println(myInt); // Outputs 9 +System.out.println(myDouble); // Outputs 9.0 +``` + +#### Narrowing Casting (manually) + +Hier wird ein größerer Typ in einen kleineren Typ konvertiert + +`double` -> `float` -> `long` -> `int` -> `char` -> `short` -> `byte` + +```java +double myDouble = 9.78d; +int myInt = (int) myDouble; // Manual casting: double to int + +System.out.println(myDouble); // Outputs 9.78 +System.out.println(myInt); // Outputs 9 +``` + +## Nicht Primitive Datentypen + +### String + +String ist eine Wrapperklasse, welche eine Zeichenkette aus einzelnen chars +zusammenbaut. In manchen Programmiersprachen (z.B. C++) ist ein String +vergleichbar mit einem char-Array. + +```java +String myString = "this is a text"; +System.out.println("myString: " + myString); + +String concatString = "hello" + "World"; +System.out.println("concatString: " + concatString); +``` + +Methoden der Standardbibliothek: +```java +myString.charAt(); // Returns the char value at the specified index. +myString.indexOf(); // Returns the index within this string of the first occurrence of the specified substring. +myString.substring(); // Returns a string that is a substring of this string. +myString.equals(); // Compares this string to the specified object. +myString.toLowerCase(); // Converts all of the characters in this String to lower case. +myString.toUpperCase(); // Converts all of the characters in this String to upper case. +myString.contains(); // Returns true if and only if this string contains the specified sequence of char values. +myString.replaceAll(); // Replaces each substring of this string that matches the given regular expression with the given replacement. +myString.compareTo(); // Compares two strings lexicographically. The comparison is based on the Unicode value of each character in the strings. +``` + +### Numeric Datatypes + +Im Gegensatz zu den primitiven Datentypen werden hier "Wrapper" verwendet, um +dynamisch mit den Werten arbeiten zu können. Das erlaubt auch die Erweiterung +um verschiedene Methoden in der Standardbibliothek. + +Integer: +```java +Integer myNumber = 10; +Integer.parseInt(); // Parses the string argument as a signed decimal integer. +Integer.parseUnsignedInt(); // Parses the string argument as an unsigned decimal integer. +Integer.valueOf(); // Returns an Integer object holding the value of the specified String. +``` + +Float and Double: +```java +Double myDouble = 10.0; +myDouble.isNaN(); // Returns true if this Double value is a Not-a-Number (NaN), false otherwise. + +Float myFloat = (float)10.0; +myFloat.isNaN(); // Returns true if this Float value is a Not-a-Number (NaN), false otherwise +``` + +Funktionen für alle Numerischen Datentypen (Nicht Primitiv): +```java +myNumber.compareTo(); // Compares two Integer objects numerically. +myNumber.toString(); // Returns a String object representing this Integer's value. +myNumber.intValue(); // Returns the value of this Integer as an int. +myNumber.floatValue(); // Returns the value of this Integer as a float after a widening primitive conversion. +myNumber.doubleValue(); // Returns the value of this Integer as a double after a widening primitive conversion. +myNumber.shortValue(); // Returns the value of this Integer as a short after a narrowing primitive conversion. +``` + +### Arrays +Bei Arrays handelt es sich um Schleifen eines bestimmten Datentypen. Sie werden +verwendet, um mehrere Werte in einer Variable zu speichern. + +```java +String[] myStringArray = new String[3]; +myStringArray[0] = "ROT"; +myStringArray[1] = "GRÜN"; +myStringArray[2] = "BLAU"; + +int[] myIntArray = {0,1,2}; + +System.out.println(myIntArray.length); // 3 +System.out.println(Arrays.toString(myIntArray)); // [0,1,2] +``` + +multidimensionale Arrays: +```java +int[][] my2DArray = { + {1, 2}, + {3, 4, 5}, + {6, 7, 8, 9}, +}; + +System.out.println(my2DArray.length); +System.out.println(my2DArray[0].length); + +for(int row = 0; row < my2DArray.length; row++) { + System.out.print("["); + for(int column = 0; column < my2DArray[row].length; column++) { + if (column == (my2DArray[row].length - 1) ) { + System.out.print(my2DArray[row][column]); + continue; + } + System.out.print(my2DArray[row][column] + ", "); + } + System.out.println("]"); +} +``` + +Methoden: +```java +Arrays.toString(myArray); // a string representation of the object. +Arrays.copyOf(myArray, 3); // Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length. +Arrays.compare(myArray, myArray); // Compares two int arrays lexicographically. +Arrays.equals(myArray, myArray); // Returns true if the two specified arrays of ints are equal to one another. +Arrays.sort(myArray); // Sorts the specified array into ascending numerical order +Arrays.fill(myArray, 0); // Assigns the specified int value to each element of the specified array of ints. +``` + +## Operatoren + +### Arithmetic Operators +```java +int calcAddition = 20 + 10; // = 30 +int calcSubstraction = 20 - 10; // = 10 +int calcMultiplication = 20 * 10; // = 200 +int calcDivision = 20 / 10; // = 2 +int calcModulus = 20 % 3; // = 2 + +int myNumber = 10; +myNumber++; // myNumber = 11 +myNumber--; // myNumber = 10 +myNumber--; // myNumber = 9 +``` + +### Comparison Operators +```java +int biggerNumber = 20; +int biggerNumberAgain = 20; +int smallerNumber = 10; + +// (20 == 20) => true +// (20 != 20) => false +// (20 > 10) => true +// (20 < 10) => false +// (20 >= 10) => true +// (20 >= 10) => true +``` + +## Bedingungen + +wir verwenden folgende Variablen: +```java +int biggerNumber = 20; +int biggerNumberAgain = 20; +int smallerNumber = 10; +``` + +### if-condition (better version) +```java +if (biggerNumber > smallerNumber) { + System.out.println("the left number is bigger!"); +} +``` + +### if-condition (worse version) +```java +// prefer to not write it down like this! +if (biggerNumber == biggerNumberAgain) + System.out.println("We don't do this here..."); +``` + +### if-else-condition +```java +if (biggerNumber < smallerNumber) { + System.out.println("the left number is smaller!"); +} else if (biggerNumber < biggerNumberAgain) { + System.out.println("but this time, the left number is smaller!"); +} else { + System.out.println("the left number is just too big!"); +} +``` + +### switch-case +```java +int luckyNumber = 69; +switch (luckyNumber) { + case 13: + System.out.println("some people consider 13 to be a lucky number"); + break; // we need this to avoid default! + case 7: + System.out.println("slot machines value this number high"); + break; // we need this to avoid default! + default: + System.out.println("seems, your number was not lucky enough..."); +} +``` + +## Schleifen + +### while-loop +```java +int whileNumber = 3; +while (whileNumber > 0) { + System.out.println(whileNumber); + whileNumber --; +} +``` + +### do-while-loop +```java +System.out.println("--- doWhileNumber:"); +int doWhileNumber = 3; +do { + System.out.println(doWhileNumber); + doWhileNumber--; +} while(doWhileNumber > 0); +``` + +### for-loop +```java +System.out.println("--- forNumber:"); +for(int iterator = 0; iterator <= 5; iterator++) { + System.out.println(iterator); +} +``` + +### Beispiel Ausführung +```java +int myNumber = 1; +// count, how many times we can add 2 until we reach 16, +// but we pretend, 13 doesn't exist for reasons +for(int counter = 0; counter <= 10; counter++) { + myNumber += 2; + if (myNumber == 13) { + continue; + } + System.out.println(counter); + if (myNumber >= 16) { + break; + } +} +``` + +### Hinweis +Vermeidet einfache Variablennamen wie i, u, usw.m um die Lesbarkeit einfach zu halten +```java +// +for(int i = 0; i < 10; i++) { + for(int u = 30; i > 15; u++) { + myArray[u][i] = i + u; + } +} +``` + +### for-each-loop + +#### arrays +```java +int[] myArray = {1, 2, 3}; + +for(int selectedValue: myArray) { + System.out.println("myArray: " + selectedValue); + selectedValue = 0; +} + +System.out.println(Arrays.toString(myArray)); + +for(int selection: myArray) { + System.out.println(selection); +} +``` + +#### lists +```java +LinkedList myLinkedList = new LinkedList<>(); +myLinkedList.add("List_1"); +myLinkedList.add("List_2"); +myLinkedList.add("List_3"); + +for(int selectedValue: myArray) { + System.out.println(selectedValue); +} +``` + +### maps + +```java +HashMap myHashMap = new HashMap<>(); +myHashMap.put(1, "Larry"); +myHashMap.put(2, "Steve"); +myHashMap.put(3, "James"); + +myHashMap.forEach((key, value) -> { + System.out.println(key + " " + value); +}); +``` + +## Exceptions + +```java +public class Main { + public static void main(String[] args) { + + // simple exception handling + try { + int[] myNumbers = {1, 2, 3}; + System.out.println(myNumbers[10]); + } catch (Exception exception) { + System.out.println(exception); + System.out.println("---"); + } + + // extended exception handling + try { + int[] myNumbers = {1, 2, 3}; + printTenthIndex(myNumbers); + } catch (RuntimeException exception) { + System.out.println("class: " + exception.getClass()); // class: class java.lang.RuntimeException + System.out.println("cause: " + exception.getCause()); // cause: java.lang.RuntimeException: array is not big enough + System.out.println("message: " + exception.getMessage()); // message: index was not found + } finally { + System.out.println("finally! The 'try catch' is finished."); + } + } + + public static void printTenthIndex(int[] array) throws RuntimeException { + Exception r = new RuntimeException("array is not big enough"); // not every exception supports causes + if (array.length < 11) { + throw new RuntimeException("index was not found", r); + } + System.out.println(array[10]); + } +} +``` \ No newline at end of file diff --git a/docs/03_coding_style.md b/docs/03_coding_style.md new file mode 100644 index 0000000..909d3de --- /dev/null +++ b/docs/03_coding_style.md @@ -0,0 +1,108 @@ +# 03: Coding Style + +Programme können sehr schnell sehr komplex werden. +Daher ist es wichtig, sich an Stil-Regeln zu halten, um sie möglichst +verständlich zu schreiben. + +## 1. Selbsterklärend + +Code sollte sich so gut wie möglich selbst erklären. +Dazu sind sprechende Variablen-, Funktions-, Klassennamen etc. erforderlich. +Kurze Namen sind nur in kleinen Gültigkeitsbereichen oder bei klarer Bedeutung +(z.B. `i` für for-Schleifen Iteratoren, `y` für vertikale Position) erlaubt. + +### 1.1 Kommentare + +Kommentare sind in diesem Zusammenhang vorallem zur Strukturierung/Abgrenzung +des Codes empfohlen, und um die +Verständlichkeit zu erhöhen. +Kommentare sollten nicht das Offensichtliche wiederholen (siehe Bild). + +![Cat labeled Cat](https://i.redd.it/iuy9fxt300811.png) + +Selbstverständlich kann Code zum besseren eigenen Verständnis kommentiert +werden. +Denken Sie aber daran, dass bei Code Änderungen auch die Kommentare mit gepflegt +werden müssen. + +## 4. Benennung + +Die folgenden Regelungen sind empfohlen und in keinster Weise verpflichtend. + +### 4.1 camelCase für Variablen und Funktionen + +Variablen- und Funktionsnamen beginnen mit Kleinbuchstaben und folgen der +camelCase Notation, d.h. bei zusammengesetzten +Namen beginnen die Wortteile im Inneren mit einem Großbuchstaben. +Funktionsnamen beschreiben dabei eine Aktivität ( +z.B. `calculateHorizontalPosition()`) oder eine Frage (z.B. `isHit()`). + +Gleiches gilt für Attribute und Methoden. + +### 4.2 Unterstrich vor formalen Parametern + +Formale Parameter folgen dem Variablen-Benennungs-Schema, mit dem Zusatz eines +Unterstriches am Anfang. +(z.B. `moveTo(_x: number, _y: number)`). + +### 4.3 PascalCase für Klassen und Interfaces + +Die Namen von Klassen und Interfaces beginnen mit einem Großbuchstaben und +folgen sonst der Kamelnotation (also +PascalCase). +Klassen und Interfaces beschreiben im Normalfall ein bestimmtes Objekt, nicht +eine Gruppe von Objekten. +Dies sollte sich im Namen wiederspiegeln (`Produkt` statt `Produkte`). + +### 4.4 Großschreibung für Enumeratoren + +Die Namen von Enumerationen und deren Elemente werden durchgehend mit +Großbuchstaben geschreiben. Wortteile werden bei +Bedarf mit Unterstrich getrennt. + +## 5. Doppelte und einfache Anführungszeichen + +Es empfielt sich, einfache Anführungszeichen `' '` für char und doppelte +Anführungszeichen `" "` für Strings zu verwenden. + +## 6. Formatierung + +Code ist sinnvoll Formatiert mit Einschüben etc. +Im Regelfall unterstützt VSCode dies Automatisch. Machen Sie Gebrauch von der +automatischen Formatierungsfunktion. + +* [Anleitung für IntelliJ](https://www.jetbrains.com/help/idea/reformat-and-rearrange-code.html#reformat_file) +* [Anleitung für Visual Studio Code](https://stackoverflow.com/questions/29973357/how-do-you-format-code-in-visual-studio-code-vscode) +* [Anleitung für Eclipse](https://praxistipps.chip.de/eclipse-autoformat-code-so-gehts_98369) + +## 8. "Magische" Zahlen + +Der Gebrauch von "magischen" Zahlen sollte vermieden werden. Solange es nicht +extrem offensichtlich ist, wofür eine Zahl +steht (z.B. `Math.pow(x, 5)`), sollte eine Variable (nach den oben genannten +Guidelines) angelegt werden, welcher die +Zahl als Wert zugewiesen wird. So entsteht der Zusammenhang zwischen der +Variablen und ihrer Bedeutung, und der Wert +kann an einer zentralen Stelle angepasst werden. + +## 9. Dateinamen und -aufteilung + +Dateinamen dürfen keine Leerzeichen oder Umlaute enthalten, sind sonst aber frei +wählbar (s.u. für Einschränkungen). Es +wird empfohlen, die Zeichenwahl auf a-z, A-Z, 0-9 und _ zu beschränken. +Code kann auf mehrere Dateien aufgeteilt werden, sofern dies sinnvoll +erscheint (z.B. um eine Trennung von Funktion und +Daten zu erreichen). Wenn Klassen verwendet werden, sollte jede ihre eigene +Datei bekommen. Sofern eine Datei eine +bestimmte Klasse enthält, soll die Datei mit dem Namen der Klasse benannt sein. + +## 10. Wiederholungen sind schlecht + +Code der sich ohne oder nur mit minimalen Änderungen wiederholt, kann in den +allermeisten Fällen besser geschrieben +werden, z.B. über eine Funktion mit Übergabeparametern, oder indem man nur den +geänderten Teil implementiert oder +überschreibt, während der Rest für alles gleich generiert wird. +Dies hat viele Vorteile: Es macht den Code generell übersichtlicher (und damit +besser verständlich), kürzer, und +wartungsfreundlicher. \ No newline at end of file diff --git a/docs/04_introduction_to_objects.md b/docs/04_introduction_to_objects.md new file mode 100644 index 0000000..12a7fe8 --- /dev/null +++ b/docs/04_introduction_to_objects.md @@ -0,0 +1,302 @@ +# 04: Einführung in Objekte + +## Kurze Begriffserklärung + +Quelle: [stackhowto.com](https://stackhowto.com/difference-between-instantiating-declaring-and-initializing/) + +### Declaration +> Declaring a variable means the first “mention” of the variable, which tells the compiler “Hello, I am here and can be used”. +> In a statically typed language like Java, this also means that the declared type of the variable is determined. +> The value itself is not determined during the declaration. +```java +String name; +int nbr; +``` + +### Initialization +> The term initialization usually means the first assignment of a value to a variable. +```java +String name = "Thomas"; +int nbr = 5; +``` + +### Instantiation +> The term instantiation actually has nothing to do with assigning a value to a variable, even if a new object is sometimes instantiated when a variable is initialized. +> The term simply means the creation of a new object, i.e. an instance, from a class. +```java +String name = new String("Thomas"); +``` + + +## #1 Einfache Objekte und Veerbung +**Lernziele:** +* eine Klasse erzeugen +* eine Klasse aufrufen +* einfache Veerbung +* Polymorphie (Überschreiben von Methoden) +* die Verwendung von `this` +* die Verwendung von `super` + +```java +// main.java +public class Main { + public static void main(String[] args) { + Animal myAnimal = new Animal(); + myAnimal.makeSound(); + + Dog myDog = new Dog(); + myDog.makeSound(); + + Cat myCat = new Cat(); + myCat.makeSound(); + + myCat.compareToAnimal(); + } +} +``` + +```java +// Animal.java +public class Animal { + public boolean isPet; + + public Animal() { + System.out.println("## in constructor of Animal"); + this.isPet = false; // it doesn't exist for our cats or dogs + } + + public void makeSound() { + System.out.println("Yes, animal usually make sounds"); + } + +} +``` + +```java +// Cat.java +public class Cat extends Animal { + + public Cat() { + System.out.println("## in constructor of Cat"); + this.isPet = true; + } + + @Override + public void makeSound() { + System.out.println("meow meow"); + } + + public void compareToAnimal() { + System.out.println("--- Animal ---"); + super.makeSound(); + System.out.println("is alive: " + super.isPet); + + System.out.println("--- Cat ---"); + this.makeSound(); + System.out.println("is alive: " + this.isPet); + } +} +``` +```java +// Dog.java +public class Dog extends Animal { + + public Dog() { + System.out.println("## in constructor of Dog"); + this.isPet = true; + } + + @Override + public void makeSound() { + System.out.println("woof woof"); + this.isPet = true; + } + + public void compareToAnimal() { + System.out.println("--- Animal ---"); + super.makeSound(); + System.out.println("is alive: " + super.isPet); + + System.out.println("--- Cat ---"); + this.makeSound(); + System.out.println("is alive: " + this.isPet); + } + +} +``` + +## #2 komplexere Vererbung von Klassen + +**Lernziele:** +* Erweiterte Veerbung +* Modifikatoren für Attribute +* Getter und Setter +* Konstruktorverkettung + +```java +// main.java +public class Main { + public static void main(String[] args) { + Vehicle myVehicle = new Vehicle(); + System.out.println("-- myVehicle:"); + System.out.println("number of wheels: " + myVehicle.getNumberOfWheels()); + System.out.println("max Speed: " + myVehicle.getMaxSpeed()); + myVehicle.setMaxSpeed(150); + System.out.println("max Speed: " + myVehicle.getMaxSpeed()); + + Car myCar = new Car("blue"); + System.out.println("-- myCar:"); + System.out.println("number of wheels: " + myCar.getNumberOfWheels()); + System.out.println("max Speed: " + myCar.getMaxSpeed()); + myVehicle.setMaxSpeed(150); + System.out.println("max Speed: " + myCar.getMaxSpeed()); + } +} +``` + +```java +public class Vehicle { + protected int numberOfWheels; + protected int maxSpeed; + + public Vehicle() { + System.out.println("## in default constructor of Vehicle"); + this.numberOfWheels = 4; + this.maxSpeed = 100; + } + + public Vehicle(int numberOfWheels, int maxSpeed) { + System.out.println("## in constructor of Vehicle"); + this.numberOfWheels = numberOfWheels; + this.maxSpeed = maxSpeed; + } + + public int getNumberOfWheels() { + return this.numberOfWheels; + } + + public int getMaxSpeed() { + return this.maxSpeed; + } + + public String printMaxSpeed() { + return this.maxSpeed + " km/h"; + } + + public void setMaxSpeed(int newMaxSpeed) { + if (newMaxSpeed < 0) { + return; + } + this.maxSpeed = newMaxSpeed; + } + +} +``` + +```java +public class Car extends Vehicle { + private String color; + + public Car(String color) { + super(4, 200); // always needs to be the first statement + System.out.println("## in constructor of Car"); + this.color = color; + } + + @Override + public void setMaxSpeed(int newMaxSpeed) { + if (newMaxSpeed < 1000) { + System.out.println("No car shall be this slow tbh"); + return; + } + this.maxSpeed = newMaxSpeed; + } +} +``` + +```java +public class Car extends Vehicle { + private String color; + + public Car(String color) { + super(4, 200); // always needs to be the first statement + System.out.println("## in constructor of Car"); + this.color = color; + } + + @Override + public void setMaxSpeed(int newMaxSpeed) { + if (newMaxSpeed < 1000) { + System.out.println("No car shall be this slow tbh"); + return; + } + this.maxSpeed = newMaxSpeed; + } +} +``` + +```java +public class Truck extends Vehicle { + private boolean isFireTruck; + private final String hornSound; + + public Truck(boolean isFireTruck) { + super(4, 200); // always needs to be the first statement + System.out.println("## in constructor of Truck"); + this.isFireTruck = isFireTruck; + this.hornSound = "test"; + } + + public boolean getIsFireTruck() { + return this.isFireTruck; + } +} +``` + +## #3 `static` in einer Klasse + +**Lernziele:** +* statische und dynamische Variablen +* statische und dynamische Methoden + +```java +// main.java +public class Main { + public static void main(String[] args) { + Counter.printCounterStatic("Static"); + Counter.increaseCounterStatic(); + Counter.printCounterStatic("Static"); + + Counter myCounter = new Counter(); + Counter.increaseCounterStatic(); + myCounter.increaseCounterDynamic(); + myCounter.printCounterDynamic("Dynamic"); + } +} +``` + +```java +public class Counter { + static int counterValueStatic = 0; + int counterValueDynamic = 0; + + public static void increaseCounterStatic() { + counterValueStatic++; + } + + public void increaseCounterDynamic() { + this.counterValueDynamic++; + } + + public void printCounterDynamic(String classID) { + System.out.println(">> execute printCounterDynamic of class " + classID); + System.out.println("static: " + counterValueStatic); + System.out.println("dynamic: " + this.counterValueDynamic); + } + + public static void printCounterStatic(String classID) { + System.out.println(">> execute printCounterStatic of class " + classID); + System.out.println("dynamic: " + counterValueStatic); + } +} +``` \ No newline at end of file diff --git a/docs/05_types_of_objects.md b/docs/05_types_of_objects.md new file mode 100644 index 0000000..22e6896 --- /dev/null +++ b/docs/05_types_of_objects.md @@ -0,0 +1,286 @@ +# 05: Typen von Objekten + +## Enumerations + +```java +// SecurityLevel.java +public enum SecurityLevel { + LOW, + MEDIUM, + HIGH; +} +``` + +```java +// Main.java +public class Main { + public static void main(String[] args) { + SecurityLevel networkSecurity = SecurityLevel.MEDIUM; + + // comparing enum items + System.out.println(networkSecurity == SecurityLevel.HIGH); // false + System.out.println(networkSecurity.compareTo(SecurityLevel.LOW)); // 1 + System.out.println(networkSecurity.compareTo(SecurityLevel.MEDIUM)); // 0 + System.out.println(networkSecurity.compareTo(SecurityLevel.HIGH)); // -1 + + // print all possible values + for(SecurityLevel value : SecurityLevel.values()) { + System.out.println(value.ordinal() + " " + value.name() + " " + value); + } + + switch (networkSecurity) { + case LOW: + System.out.println("The network security MUST be increased!"); + break; + case MEDIUM: + System.out.println("The network security needs improvements"); + break; + case HIGH: + System.out.println("The network security is good so far"); + break; + } + } +} +``` + +## Generics + +```java +// Main.java +public class Main /*extends Language implements Regex*/ { + public static void main(String[] args) { + + SaveState stateFirst = new SaveState("Begin of the story"); + SaveState stateSecond = new SaveState("Near last boss fight"); + + System.out.println(stateFirst); + System.out.println(stateSecond); + + System.out.println("second state bigger? " + stateSecond.compareTo(stateFirst)); + System.out.println("first state bigger? " + stateFirst.compareTo(stateSecond)); + + stateFirst.setSaveState("Finished tutorial"); + System.out.println(stateFirst.getSaveState()); + } +} +``` + +### Abstract and Interface +```java +// Regex.java +public interface Regex { + public String concatStrings(String left, String right); +} +``` +```java +// Main.java +abstract class Language { + public void showLanguage() { + System.out.println("This text is presented to you by Java"); + } + public abstract void sayHelloWorld(); +} + +// Main.java +public class Main extends Language implements Regex { + public static void main(String[] args) { + // Language myLanguage = new Language(); + // 'Language' is abstract; cannot be instantiated + + Main myObject = new Main(); + myObject.sayHelloWorld(); + + String wortwitz = myObject.concatStrings("du", "schlampe"); + System.out.println(wortwitz); // duschlampe + } + + @Override + public void sayHelloWorld() { + System.out.println("I refuse to say that!"); + } + + @Override + public String concatStrings(String left, String right) { + return left + right; + } +} +``` +```java +// SaveState.java + +import java.security.InvalidParameterException; + +public class SaveState implements Comparable { + private T saveEntry; + private int saveID = 0; + private static int staticSaveID; + + // constructor + SaveState(T saveEntry) throws InvalidParameterException { + if(saveEntry == null) throw new InvalidParameterException("entry shall not be null"); + this.saveEntry = saveEntry; + this.saveID = staticSaveID; + staticSaveID++; + } + + public int getSaveID() { + return this.saveID; + } + + public T getSaveState() { + return this.saveEntry; + } + + public void setSaveState(T saveEntry) throws InvalidParameterException { + if(saveEntry == null) throw new InvalidParameterException("entry shall not be null"); + this.saveEntry = saveEntry; + } + + @Override + public String toString() { + try { + return this.saveID + ": " + this.saveEntry.toString(); + } catch (Exception exception) { + System.out.println("T.toString() for Class " + saveEntry.getClass() + " does not exist"); + return null; + } + } + + @Override + public int compareTo(SaveState object) { + if (this.saveID > object.getSaveID()) { + return 1; + } + if (this.saveID < object.getSaveID()) { + return -1; + } + return 0; + } +} +``` + +## Collections + +```java +import java.util.*; + +// Main.java +public class Main { + public static void main(String[] args) { + + String[] alphabet = { + "bee", + "apple", + "clown" + }; + System.out.println( Arrays.toString(alphabet) ); + + ArrayList myArrayList = new ArrayList(); + TreeSet myTreeSet = new TreeSet(); + HashMap myHashMap = new HashMap<>(); + + for(String selection: alphabet) { + myArrayList.add(selection); + myTreeSet.add(selection); + myHashMap.put(myHashMap.size(), selection); + } + + Set mapKeys = myHashMap.keySet(); + System.out.println(mapKeys); + + Collection mapValues = myHashMap.values(); + System.out.println(mapValues); + + Iterator arrayListIterator = myArrayList.iterator(); + Iterator treeSetIterator = myTreeSet.iterator(); + Iterator hashMapIterator = myHashMap.values().iterator(); + + System.out.println("--- arrayList ---"); + for (String selectedValue: myArrayList) { + System.out.println(selectedValue); + } + System.out.println("--- arrayListIterator ---"); + while (arrayListIterator.hasNext()) { + System.out.println(arrayListIterator.next()); + } + + System.out.println("--- treeSet ---"); + for (String selectedValue: myTreeSet) { + ystem.out.println(selectedValue); + } + System.out.println("--- treeSetIterator ---"); + while (treeSetIterator.hasNext()) { + System.out.println(treeSetIterator.next()); + } + + System.out.println("--- hashMap ---"); + for (Map.Entry pair : myHashMap.entrySet()) { + System.out.println(pair.getKey() + ": " + pair.getValue()); + } + System.out.println("--- hashMapIterator ---"); + while (hashMapIterator.hasNext()) { + System.out.println(hashMapIterator.next()); + } + } +} +``` + +* List - für beliebig große Listen, deren Elemente auch über einen Index zugegriffen werden können, + * `ArrayList` - Indizierte Liste, deren Größe dynamisch verändert werden kann. Indexzugriffe sind schnell, Größenänderungen sind aufwändig. + * `LinkedList` - Verkettete Liste. Indexzugriffe sind langsam, Einfügen und Löschen ist schnell. +* Set - zur Darstellung von Mengen + * `HashSet` - ungeordnete Datenmenge (ohne Duplikate) + * `TreeSet` - Sortierte Menge. +* Map - für Paare von Daten verschiedenen Typs. + * `HashMap` - Menge von (Schlüssel,Wert)-Paaren + * `TreeMap` - nach Schlüsseln sortierte Menge von (Schlüssel,Wert)-Paaren + +### Collection Interface (List, Set, Map) + +| Methode | Beschreibung | +|---------------------------------|---------------------------------------------------------------| +| int size() | liefert die Anzahl der Einträge | +| boolean isEmpty() | prüft, ob keine Einträge vorhanden sind | +| boolean contains(Object o) | prüft, ob o eingetragen ist | +| boolean add(Object o) | prüft, ob alle Elemente aus c enthalten sind | +| boolean addAll(Collection c) | trägt alle Elemente aus c ein (optional) | +| boolean remove(Object o) | entfernt o (optional) | +| boolean removeAll(Collection c) | entfernt die in c angegebenen Elemente (optional) | +| boolean retainAll(Collection c) | entfernt alle Elemente, außer die in c angegebenen (optional) | +| boolean equals(Object o) | prüft, ob o mit der Collection übereinstimmt | +| Iterator iterator() | erzeugt einen Iterator | +| void clear() | entfernt alle Elemente (optional) | + +### List Interface + +| Methode | Beschreibung | +|-----------------------|----------------------------------------------------------| +| Object get(int i) | liefert das Element an Position i (ohne es zu entfernen) | +| int indexOf(Object o) | liefert den Index des ersten Vorkommens von o oder -1 | + +### Map Interface + +| Methode | Beschreibung | +|--------------------------------------|-----------------------------------------------------------| +| boolean containsKey(Object key) | prüft, ob ein Datenpaar mit Schlüssel key eingetragen ist | +| boolean containsValue(Object value) | prüft, ob ein Datenpaar mit Wert value eingetragen ist | +| Object get(Object key) | liefert den eingetragenen Wert zum Schlüssen key | +| Object put(Object key, Object value) | trägt das Datenpaar(key,value) ein (optional) | +| boolean remove(Object key) | entfernt das Datenpaar mit Schlüssel key (optional) | + +### Iteratoren (List, Set) + +| Methode | Beschreibung | +|-------------------|-------------------------------------------------| +| boolean hasNext() | prüft, ob ein weiteres Element existiert | +| Object next() | liefert das nächste Element und schaltet weiter | +| void remove() | löscht das aktuelle Element | + +### ListIterator (List) + +| Methode | Beschreibung | +|-----------------------|-----------------------------------------------------------| +| boolean hasPrevious() | prüft, ob ein Vorgänger existiert | +| Object previous() | liefert das vorherige Element | +| void add(Object o) | fügt ein neues Element o hinter dem aktuellen Element ein | +| void set(Object o) | ersetzt das aktuelle Element durch o | \ No newline at end of file diff --git a/docs/06_java_docs.md b/docs/06_java_docs.md index 4a9c0fb..8b62aa4 100644 --- a/docs/06_java_docs.md +++ b/docs/06_java_docs.md @@ -1,6 +1,41 @@ -https://binfalse.de/2015/10/05/javadoc-cheats-sheet/ +# 06: JavaDoc - +Quelle: [JavaDoc Cheatsheet](https://binfalse.de/2015/10/05/javadoc-cheats-sheet/) - \ No newline at end of file +Output as PDF: [JavaDoc from class Main](https://github.com/YamiDoesDev/algodat-java-intro/blob/main/media/javadoc_main.pdf) + +```java +/** + * This is the Main class + * @version 1.0.1 + * @author Justin Drtvic + */ +// Main.java +public class Main { + /** + * this is the main function, which is needed to execute the code + * @param args params passed by the command line + */ + public static void main(String[] args) { + System.out.println( addition(1,2) ); + } + + /** + * addition of two integer numbers + * @param left number for left side + * @param right number for right side + * @return sum of two numbers + * @throws IllegalArgumentException for numbers smaller than 0 + * @see Math + * @see Mathebibel Addition + * @since Java API 7 + * @deprecated deprecated since 3.0.0 + */ + public static int addition(int left, int right) { + if (left < 0 || right < 0) { + throw new IllegalArgumentException("we don't like numbers smaller than 0"); + } + return left + right; + } +} +``` \ No newline at end of file diff --git a/out/production/algodat-java-intro/.gitignore b/out/production/algodat-java-intro/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/out/production/algodat-java-intro/Main.class b/out/production/algodat-java-intro/Main.class new file mode 100644 index 0000000000000000000000000000000000000000..8452b20969c0665914759e4e7f6c24899b9161a5 GIT binary patch literal 789 zcmZ`%+iuf95IvhXacrElBs9>ZrKS{W7if4UfP}b6mQsoo6bZEtY@Ef})|bfHaQPPa z1YY2QB9P#nk3x){NCm09c+T#eb9QDtzkYxF0pK2Pn<${DL$gpqnPK^ezvi8g$3bU* zcqDwqP`)c;sqQlr9d}@$0z-#s;T)`g=>2z7B_d)aGZL-zawC~^o~1HYeU%CxbxqW; zq+{8_dDI!SJuYL03LlN6k_o|*<9V)U;sRE5G%Z}jC5FZsRt)+iGY(0lIi5Sv(PG#< zt=D8tBo4(Z8Z`50YN-sygsXkU{o_48S-fXH5|dQ;T!|5b z*-vJvFP_M(JR_@MH=7o&&_5~AE&xT470UFr>C~afD3*3kz&;Tu5EXeE(6LF_niFsp zTXZsT4c8aqJGmJ#K10_^Us3&n#;HfPb3m0=sP>nSg>5*w4=o2VY{G}+lX07^_t4uP zQ2mb87xnfD)_=CzFF#VIm{(P!2&~a^u9J2ncWus + + + +Main + + + + + + + + + + + + + + + +
+ +
+
+ +
+

Class Main

+
+ +
+
+
public class Main +extends Object
+
This is the Main class
+
+
Version:
+
1.0.1
+
Author:
+
Justin Drtvic
+
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    static int
    +
    addition(int left, + int right)
    +
    +
    Deprecated. +
    deprecated since 3.0.0
    +
    +
    +
    static void
    +
    main(String[] args)
    +
    +
    this is the main function, which is needed to execute the code
    +
    +
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Main

      +
      public Main()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      main

      +
      public static void main(String[] args)
      +
      this is the main function, which is needed to execute the code
      +
      +
      Parameters:
      +
      args - params passed by the command line
      +
      +
      +
    • +
    • +
      +

      addition

      +
      public static int addition(int left, + int right)
      +
      Deprecated. +
      deprecated since 3.0.0
      +
      +
      addition of two integer numbers
      +
      +
      Parameters:
      +
      left - number for left side
      +
      right - number for right side
      +
      Returns:
      +
      sum of two numbers
      +
      Throws:
      +
      IllegalArgumentException - for numbers smaller than 0
      +
      Since:
      +
      Java API 7
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/allclasses-index.html b/out/production/algodat-java-intro/javadoc/allclasses-index.html new file mode 100644 index 0000000..3326a18 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/allclasses-index.html @@ -0,0 +1,69 @@ + + + + +All Classes and Interfaces + + + + + + + + + + + + + + + +
+ +
+
+
+

All Classes and Interfaces

+
+
+
Classes
+
+
Class
+
Description
+ +
+
This is the Main class
+
+
+
+
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/allpackages-index.html b/out/production/algodat-java-intro/javadoc/allpackages-index.html new file mode 100644 index 0000000..f4c3ff2 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/allpackages-index.html @@ -0,0 +1,65 @@ + + + + +All Packages + + + + + + + + + + + + + + + +
+ +
+
+
+

All Packages

+
+
Package Summary
+
+
Package
+
Description
+ +
 
+
+
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/class-use/Main.html b/out/production/algodat-java-intro/javadoc/class-use/Main.html new file mode 100644 index 0000000..6b3d2c0 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/class-use/Main.html @@ -0,0 +1,58 @@ + + + + +Uses of Class Main + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
Main

+
+No usage of Main
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/deprecated-list.html b/out/production/algodat-java-intro/javadoc/deprecated-list.html new file mode 100644 index 0000000..e3b45a2 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/deprecated-list.html @@ -0,0 +1,77 @@ + + + + +Deprecated List + + + + + + + + + + + + + + + +
+ +
+
+
+

Deprecated API

+

Contents

+ +
+ +
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/element-list b/out/production/algodat-java-intro/javadoc/element-list new file mode 100644 index 0000000..147af06 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/element-list @@ -0,0 +1 @@ +unnamed package diff --git a/out/production/algodat-java-intro/javadoc/help-doc.html b/out/production/algodat-java-intro/javadoc/help-doc.html new file mode 100644 index 0000000..037ec7c --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/help-doc.html @@ -0,0 +1,182 @@ + + + + +API Help + + + + + + + + + + + + + + + +
+ +
+
+

JavaDoc Help

+ +
+
+

Navigation

+Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
+
+
+

Kinds of Pages

+The following sections describe the different kinds of pages in this collection. +
+

Package

+

Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

+
    +
  • Interfaces
  • +
  • Classes
  • +
  • Enum Classes
  • +
  • Exceptions
  • +
  • Errors
  • +
  • Annotation Interfaces
  • +
+
+
+

Class or Interface

+

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

+
    +
  • Class Inheritance Diagram
  • +
  • Direct Subclasses
  • +
  • All Known Subinterfaces
  • +
  • All Known Implementing Classes
  • +
  • Class or Interface Declaration
  • +
  • Class or Interface Description
  • +
+
+
    +
  • Nested Class Summary
  • +
  • Enum Constant Summary
  • +
  • Field Summary
  • +
  • Property Summary
  • +
  • Constructor Summary
  • +
  • Method Summary
  • +
  • Required Element Summary
  • +
  • Optional Element Summary
  • +
+
+
    +
  • Enum Constant Details
  • +
  • Field Details
  • +
  • Property Details
  • +
  • Constructor Details
  • +
  • Method Details
  • +
  • Element Details
  • +
+

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

+

The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

+
+
+

Other Files

+

Packages and modules may contain pages with additional information related to the declarations nearby.

+
+
+

Use

+

Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.

+
+
+

Tree (Class Hierarchy)

+

There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

+
    +
  • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
  • +
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • +
+
+
+

Deprecated API

+

The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to shortcomings, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

+
+
+

All Packages

+

The All Packages page contains an alphabetic index of all packages contained in the documentation.

+
+
+

All Classes and Interfaces

+

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

+
+
+

Index

+

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

+
+
+
+This help file applies to API documentation generated by the standard doclet.
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/index-files/index-1.html b/out/production/algodat-java-intro/javadoc/index-files/index-1.html new file mode 100644 index 0000000..ed7d9c3 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/index-files/index-1.html @@ -0,0 +1,68 @@ + + + + +A-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A M 
All Classes and Interfaces|All Packages +

A

+
+
addition(int, int) - Static method in class Main
+
+
Deprecated. +
deprecated since 3.0.0
+
+
+
+A M 
All Classes and Interfaces|All Packages
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/index-files/index-2.html b/out/production/algodat-java-intro/javadoc/index-files/index-2.html new file mode 100644 index 0000000..e4fdba2 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/index-files/index-2.html @@ -0,0 +1,72 @@ + + + + +M-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A M 
All Classes and Interfaces|All Packages +

M

+
+
main(String[]) - Static method in class Main
+
+
this is the main function, which is needed to execute the code
+
+
Main - Class in Unnamed Package
+
+
This is the Main class
+
+
Main() - Constructor for class Main
+
 
+
+A M 
All Classes and Interfaces|All Packages
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/index.html b/out/production/algodat-java-intro/javadoc/index.html new file mode 100644 index 0000000..1f60b5a --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/index.html @@ -0,0 +1,26 @@ + + + + +Generated Documentation (Untitled) + + + + + + + + + + + +
+ +

Main.html

+
+ + diff --git a/out/production/algodat-java-intro/javadoc/jquery-ui.overrides.css b/out/production/algodat-java-intro/javadoc/jquery-ui.overrides.css new file mode 100644 index 0000000..f89acb6 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/jquery-ui.overrides.css @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active, +a.ui-button:active, +.ui-button:active, +.ui-button.ui-state-active:hover { + /* Overrides the color of selection used in jQuery UI */ + background: #F8981D; +} diff --git a/out/production/algodat-java-intro/javadoc/legal/ADDITIONAL_LICENSE_INFO b/out/production/algodat-java-intro/javadoc/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/out/production/algodat-java-intro/javadoc/legal/ASSEMBLY_EXCEPTION b/out/production/algodat-java-intro/javadoc/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..065b8d9 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/out/production/algodat-java-intro/javadoc/legal/LICENSE b/out/production/algodat-java-intro/javadoc/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/out/production/algodat-java-intro/javadoc/legal/jquery.md b/out/production/algodat-java-intro/javadoc/legal/jquery.md new file mode 100644 index 0000000..8054a34 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.5.1 + +### jQuery License +``` +jQuery v 3.5.1 +Copyright JS Foundation and other contributors, https://js.foundation/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.5.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/out/production/algodat-java-intro/javadoc/legal/jqueryUI.md b/out/production/algodat-java-intro/javadoc/legal/jqueryUI.md new file mode 100644 index 0000000..8031bdb --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.12.1 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/out/production/algodat-java-intro/javadoc/member-search-index.js b/out/production/algodat-java-intro/javadoc/member-search-index.js new file mode 100644 index 0000000..9713b0c --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"","c":"Main","l":"addition(int, int)","u":"addition(int,int)"},{"p":"","c":"Main","l":"Main()","u":"%3Cinit%3E()"},{"p":"","c":"Main","l":"main(String[])","u":"main(java.lang.String[])"}];updateSearchResults(); \ No newline at end of file diff --git a/out/production/algodat-java-intro/javadoc/module-search-index.js b/out/production/algodat-java-intro/javadoc/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/out/production/algodat-java-intro/javadoc/overview-tree.html b/out/production/algodat-java-intro/javadoc/overview-tree.html new file mode 100644 index 0000000..36b7aae --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/overview-tree.html @@ -0,0 +1,68 @@ + + + + +Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For All Packages

+
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/package-search-index.js b/out/production/algodat-java-intro/javadoc/package-search-index.js new file mode 100644 index 0000000..747229e --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"}];updateSearchResults(); \ No newline at end of file diff --git a/out/production/algodat-java-intro/javadoc/package-summary.html b/out/production/algodat-java-intro/javadoc/package-summary.html new file mode 100644 index 0000000..7d687e6 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/package-summary.html @@ -0,0 +1,84 @@ + + + + +Unnamed Package + + + + + + + + + + + + + + + +
+ +
+
+
+

Unnamed Package

+
+
+
+
    +
  • +
    +
    Classes
    +
    +
    Class
    +
    Description
    + +
    +
    This is the Main class
    +
    +
    +
    +
  • +
+
+
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/package-tree.html b/out/production/algodat-java-intro/javadoc/package-tree.html new file mode 100644 index 0000000..d08d247 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/package-tree.html @@ -0,0 +1,68 @@ + + + + + Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Unnamed Package

+
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/package-use.html b/out/production/algodat-java-intro/javadoc/package-use.html new file mode 100644 index 0000000..874ad50 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/package-use.html @@ -0,0 +1,58 @@ + + + + +Uses of Package + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package

+
+No usage of Unnamed Package
+
+
+ + diff --git a/out/production/algodat-java-intro/javadoc/resources/glass.png b/out/production/algodat-java-intro/javadoc/resources/glass.png new file mode 100644 index 0000000000000000000000000000000000000000..a7f591f467a1c0c949bbc510156a0c1afb860a6e GIT binary patch literal 499 zcmVJoRsvExf%rEN>jUL}qZ_~k#FbE+Q;{`;0FZwVNX2n-^JoI; zP;4#$8DIy*Yk-P>VN(DUKmPse7mx+ExD4O|;?E5D0Z5($mjO3`*anwQU^s{ZDK#Lz zj>~{qyaIx5K!t%=G&2IJNzg!ChRpyLkO7}Ry!QaotAHAMpbB3AF(}|_f!G-oI|uK6 z`id_dumai5K%C3Y$;tKS_iqMPHg<*|-@e`liWLAggVM!zAP#@l;=c>S03;{#04Z~5 zN_+ss=Yg6*hTr59mzMwZ@+l~q!+?ft!fF66AXT#wWavHt30bZWFCK%!BNk}LN?0Hg z1VF_nfs`Lm^DjYZ1(1uD0u4CSIr)XAaqW6IT{!St5~1{i=i}zAy76p%_|w8rh@@c0Axr!ns=D-X+|*sY6!@wacG9%)Qn*O zl0sa739kT-&_?#oVxXF6tOnqTD)cZ}2vi$`ZU8RLAlo8=_z#*P3xI~i!lEh+Pdu-L zx{d*wgjtXbnGX_Yf@Tc7Q3YhLhPvc8noGJs2DA~1DySiA&6V{5JzFt ojAY1KXm~va;tU{v7C?Xj0BHw!K;2aXV*mgE07*qoM6N<$f;4TDA^-pY literal 0 HcmV?d00001 diff --git a/out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png b/out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png new file mode 100644 index 0000000000000000000000000000000000000000..34abd18f32d3a55a297fdcf93409bd033ae573e7 GIT binary patch literal 335 zcmeAS@N?(olHy`uVBq!ia0vp^j6gI&fCnc6a#?2AmP!?*K(O3p^r= zfwTu0yPeFo12TF&T^vI^j=w#x$i?I+((tf;UXnmgbH|3oY>pC!)f}(GR!16S-u+#{ ze6YEqRkW=8vGl=5qArKM<9}TC-}iEvB{zdaTcX5$wyRTK&ALRXUCGx5b?-VBQkUm|IuXOmYJrBRJgj{Vx zMbNnqUkncy+qa2-mWYc>swkcIuvGK#>(0d)B7)5f`@$Ei28nH~0h*~=;u=wsl30>z zm0Xkxq!^403@vmGjdTsnLJUl-Obo4zO|=aStPBhe<(7X!(U6;;l9^VCTf=69^L{`L N44$rjF6*2UngDu&PXPb` literal 0 HcmV?d00001 diff --git a/out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png b/out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png new file mode 100644 index 0000000000000000000000000000000000000000..a90afb8bf8028404d206114965669b023dcb85ea GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^j6gI&0LWmFTHNUZq?nSt-Ch3w7g=q17Rci)@Q5r1 z(jH*!b~4)z#PD=+46!(!TrvH)L6@80)r*_cdCvDr%)6ghVL16=s@mbz7H!uRdGeDa z?kzLg)16i!f8fKx84s0>4hES%`s&m5HI1v5B^Uft7(lid2moiiX_$l+3hB+!{pPkNg5^ OVDNPHb6Mw<&;$T*0!_~V literal 0 HcmV?d00001 diff --git a/out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png b/out/production/algodat-java-intro/javadoc/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png new file mode 100644 index 0000000000000000000000000000000000000000..dbe091f6dc036fc1dc11b005738e951e27a43f7a GIT binary patch literal 332 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�_j6WK+Gj+xJRxVvl#lh7y-4uY);t)n47k4ot z9YsU`HVk7fg4;r{;)FHk7ZHyZJ+W|$aKwj=g&_$VCVFn5%XzSA`|z}+4ItZ|`hB}R z>h-6Be`d>nmv8;kQHJg!HMr^cCGG=T5;3HhZ_JRq0_4a3TsY7Pz{V+}z>;!R^U4*c zJ>wRI59B-)92Vi?b&EWvH(`<(G5A?W)z>EuDMG@VENAb7aHa`I#tKw{0uUc3(#J8& z*_S%A_ZxCIY385{%qN-b1K)TWmCjUA4nWKx_ZnKLSvEf0($&_0@DS~ zN8JOXJXXcaFm^OCYrz(R7N5DQkXKGnnt}yzfw^8s%=A?7hxza;ylJ;XQ&XtC`pM%b z6$5Ff0{(ALcSlTKvIbr@mR`0Z)*iM`2EfO|E5OMk$jQsE!^mat*drqV literal 0 HcmV?d00001 diff --git a/out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_2e83ff_256x240.png b/out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_2e83ff_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..1f5f49756ca64bd20a1048bd7a3a584457d4bf00 GIT binary patch literal 4549 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 literal 0 HcmV?d00001 diff --git a/out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_888888_256x240.png b/out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_888888_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..ee5e33f27235d1b5cf0259f63f3894a6be33c679 GIT binary patch literal 6999 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 literal 0 HcmV?d00001 diff --git a/out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_cd0a0a_256x240.png b/out/production/algodat-java-intro/javadoc/script-dir/images/ui-icons_cd0a0a_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..7e8ebc180a2d2a74739059799407b8b7b57a9092 GIT binary patch literal 4549 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 Mq_Ix57W&cu0AIB!=l}o! literal 0 HcmV?d00001 diff --git a/out/production/algodat-java-intro/javadoc/script-dir/jquery-3.5.1.min.js b/out/production/algodat-java-intro/javadoc/script-dir/jquery-3.5.1.min.js new file mode 100644 index 0000000..b061403 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/script-dir/jquery-3.5.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0a;a++)for(s in o[a])n=o[a][s],o[a].hasOwnProperty(s)&&void 0!==n&&(e[s]=t.isPlainObject(n)?t.isPlainObject(e[s])?t.widget.extend({},e[s],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,s){var n=s.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=i.call(arguments,1),l=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(l=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(l=i&&i.jquery?l.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):l=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new s(o,this))})),l}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{classes:{},disabled:!1,create:null},_createWidget:function(i,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=e++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),i),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var l=s.match(/^([\w:-]*)\s*(.*)$/),h=l[1]+o.eventNamespace,c=l[2];c?n.on(h,c,r):i.on(h,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,l=/top|center|bottom/,h=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};h>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),l.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,l=n-r,h=r+e.collisionWidth-a-n;e.collisionWidth>a?l>0&&0>=h?(i=t.left+l+e.collisionWidth-a-n,t.left+=l-i):t.left=h>0&&0>=l?n:l>h?n+a-e.collisionWidth:n:l>0?t.left+=l:h>0?t.left-=h:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,l=n-r,h=r+e.collisionHeight-a-n;e.collisionHeight>a?l>0&&0>=h?(i=t.top+l+e.collisionHeight-a-n,t.top+=l-i):t.top=h>0&&0>=l?n:l>h?n+a-e.collisionHeight:n:l>0?t.top+=l:h>0?t.top-=h:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,l=n.isWindow?n.scrollLeft:n.offset.left,h=t.left-e.collisionPosition.marginLeft,c=h-l,u=h+e.collisionWidth-r-l,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-l,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,l=n.isWindow?n.scrollTop:n.offset.top,h=t.top-e.collisionPosition.marginTop,c=h-l,u=h+e.collisionHeight-r-l,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,g=-2*e.offset[1];0>c?(s=t.top+p+f+g+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+g)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+g-l,(i>0||u>a(i))&&(t.top+=p+f+g))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.safeActiveElement=function(t){var e;try{e=t.activeElement}catch(i){e=t.body}return e||(e=t.body),e.nodeName||(e=t.body),e},t.widget("ui.menu",{version:"1.12.1",defaultElement:"
    ",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault()},"click .ui-menu-item":function(e){var i=t(e.target),s=t(t.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&i.not(".ui-state-disabled").length&&(this.select(e),e.isPropagationStopped()||(this.mouseHandled=!0),i.has(".ui-menu").length?this.expand(e):!this.element.is(":focus")&&s.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(e){if(!this.previousFilter){var i=t(e.target).closest(".ui-menu-item"),s=t(e.currentTarget);i[0]===s[0]&&(this._removeClass(s.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(e,s))}},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this.element.find(this.options.items).eq(0);e||this.focus(t,i)},blur:function(e){this._delay(function(){var i=!t.contains(this.element[0],t.ui.safeActiveElement(this.document[0]));i&&this.collapseAll(e)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t),this.mouseHandled=!1}})},_destroy:function(){var e=this.element.find(".ui-menu-item").removeAttr("role aria-disabled"),i=e.children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),i.children().each(function(){var e=t(this);e.data("ui-menu-submenu-caret")&&e.remove()})},_keydown:function(e){var i,s,n,o,a=!0;switch(e.keyCode){case t.ui.keyCode.PAGE_UP:this.previousPage(e);break;case t.ui.keyCode.PAGE_DOWN:this.nextPage(e);break;case t.ui.keyCode.HOME:this._move("first","first",e);break;case t.ui.keyCode.END:this._move("last","last",e);break;case t.ui.keyCode.UP:this.previous(e);break;case t.ui.keyCode.DOWN:this.next(e);break;case t.ui.keyCode.LEFT:this.collapse(e);break;case t.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(e);break;case t.ui.keyCode.ENTER:case t.ui.keyCode.SPACE:this._activate(e);break;case t.ui.keyCode.ESCAPE:this.collapse(e);break;default:a=!1,s=this.previousFilter||"",o=!1,n=e.keyCode>=96&&105>=e.keyCode?""+(e.keyCode-96):String.fromCharCode(e.keyCode),clearTimeout(this.filterTimer),n===s?o=!0:n=s+n,i=this._filterMenuItems(n),i=o&&-1!==i.index(this.active.next())?this.active.nextAll(".ui-menu-item"):i,i.length||(n=String.fromCharCode(e.keyCode),i=this._filterMenuItems(n)),i.length?(this.focus(e,i),this.previousFilter=n,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}a&&e.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var e,i,s,n,o,a=this,r=this.options.icons.submenu,l=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),s=l.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var e=t(this),i=e.prev(),s=t("").data("ui-menu-submenu-caret",!0);a._addClass(s,"ui-menu-icon","ui-icon "+r),i.attr("aria-haspopup","true").prepend(s),e.attr("aria-labelledby",i.attr("id"))}),this._addClass(s,"ui-menu","ui-widget ui-widget-content ui-front"),e=l.add(this.element),i=e.find(this.options.items),i.not(".ui-menu-item").each(function(){var e=t(this);a._isDivider(e)&&a._addClass(e,"ui-menu-divider","ui-widget-content")}),n=i.not(".ui-menu-item, .ui-menu-divider"),o=n.children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(n,"ui-menu-item")._addClass(o,"ui-menu-item-wrapper"),i.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!t.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){if("icons"===t){var i=this.element.find(".ui-menu-icon");this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)}this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t+""),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i,s,n;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),s=this.active.children(".ui-menu-item-wrapper"),this._addClass(s,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",s.attr("id")),n=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(n,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),i=e.children(".ui-menu"),i.length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(e){var i,s,n,o,a,r;this._hasScroll()&&(i=parseFloat(t.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(t.css(this.activeMenu[0],"paddingTop"))||0,n=e.offset().top-this.activeMenu.offset().top-i-s,o=this.activeMenu.scrollTop(),a=this.activeMenu.height(),r=e.outerHeight(),0>n?this.activeMenu.scrollTop(o+n):n+r>a&&this.activeMenu.scrollTop(o+n-a+r))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(e){var i=t.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(e.parents(".ui-menu")).hide().attr("aria-hidden","true"),e.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(i)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var s=i?this.element:t(e&&e.target).closest(this.element.find(".ui-menu"));s.length||(s=this.element),this._close(s),this.blur(e),this._removeClass(s.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=s},this.delay)},_close:function(t){t||(t=this.active?this.active.parent():this.element),t.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(e){return!t(e.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this.active.children(".ui-menu ").find(this.options.items).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(t,e,i){var s;this.active&&(s="first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").eq(-1):this.active[t+"All"](".ui-menu-item").eq(0)),s&&s.length&&this.active||(s=this.activeMenu.find(this.options.items)[e]()),this.focus(i,s)},nextPage:function(e){var i,s,n;return this.active?(this.isLastItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return i=t(this),0>i.offset().top-s-n}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items)[this.active?"last":"first"]())),void 0):(this.next(e),void 0)},previousPage:function(e){var i,s,n;return this.active?(this.isFirstItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return i=t(this),i.offset().top-s+n>0}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items).first())),void 0):(this.next(e),void 0)},_hasScroll:function(){return this.element.outerHeight()",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,_create:function(){var e,i,s,n=this.element[0].nodeName.toLowerCase(),o="textarea"===n,a="input"===n;this.isMultiLine=o||!a&&this._isContentEditable(this.element),this.valueMethod=this.element[o||a?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(n){if(this.element.prop("readOnly"))return e=!0,s=!0,i=!0,void 0;e=!1,s=!1,i=!1;var o=t.ui.keyCode;switch(n.keyCode){case o.PAGE_UP:e=!0,this._move("previousPage",n);break;case o.PAGE_DOWN:e=!0,this._move("nextPage",n);break;case o.UP:e=!0,this._keyEvent("previous",n);break;case o.DOWN:e=!0,this._keyEvent("next",n);break;case o.ENTER:this.menu.active&&(e=!0,n.preventDefault(),this.menu.select(n));break;case o.TAB:this.menu.active&&this.menu.select(n);break;case o.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(n),n.preventDefault());break;default:i=!0,this._searchTimeout(n)}},keypress:function(s){if(e)return e=!1,(!this.isMultiLine||this.menu.element.is(":visible"))&&s.preventDefault(),void 0;if(!i){var n=t.ui.keyCode;switch(s.keyCode){case n.PAGE_UP:this._move("previousPage",s);break;case n.PAGE_DOWN:this._move("nextPage",s);break;case n.UP:this._keyEvent("previous",s);break;case n.DOWN:this._keyEvent("next",s)}}},input:function(t){return s?(s=!1,t.preventDefault(),void 0):(this._searchTimeout(t),void 0)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(clearTimeout(this.searching),this.close(t),this._change(t),void 0)}}),this._initSource(),this.menu=t("
      ").appendTo(this._appendTo()).menu({role:null}).hide().menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(e){e.preventDefault(),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,this.element[0]!==t.ui.safeActiveElement(this.document[0])&&this.element.trigger("focus")})},menufocus:function(e,i){var s,n;return this.isNewMenu&&(this.isNewMenu=!1,e.originalEvent&&/^mouse/.test(e.originalEvent.type))?(this.menu.blur(),this.document.one("mousemove",function(){t(e.target).trigger(e.originalEvent)}),void 0):(n=i.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",e,{item:n})&&e.originalEvent&&/^key/.test(e.originalEvent.type)&&this._value(n.value),s=i.item.attr("aria-label")||n.value,s&&t.trim(s).length&&(this.liveRegion.children().hide(),t("
      ").text(s).appendTo(this.liveRegion)),void 0)},menuselect:function(e,i){var s=i.item.data("ui-autocomplete-item"),n=this.previous;this.element[0]!==t.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=n,this._delay(function(){this.previous=n,this.selectedItem=s})),!1!==this._trigger("select",e,{item:s})&&this._value(s.value),this.term=this._value(),this.close(e),this.selectedItem=s}}),this.liveRegion=t("
      ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(e){var i=this.menu.element[0];return e.target===this.element[0]||e.target===i||t.contains(i,e.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var e=this.options.appendTo;return e&&(e=e.jquery||e.nodeType?t(e):this.document.find(e).eq(0)),e&&e[0]||(e=this.element.closest(".ui-front, dialog")),e.length||(e=this.document[0].body),e},_initSource:function(){var e,i,s=this;t.isArray(this.options.source)?(e=this.options.source,this.source=function(i,s){s(t.ui.autocomplete.filter(e,i.term))}):"string"==typeof this.options.source?(i=this.options.source,this.source=function(e,n){s.xhr&&s.xhr.abort(),s.xhr=t.ajax({url:i,data:e,dataType:"json",success:function(t){n(t)},error:function(){n([])}})}):this.source=this.options.source},_searchTimeout:function(t){clearTimeout(this.searching),this.searching=this._delay(function(){var e=this.term===this._value(),i=this.menu.element.is(":visible"),s=t.altKey||t.ctrlKey||t.metaKey||t.shiftKey;(!e||e&&!i&&!s)&&(this.selectedItem=null,this.search(null,t))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(t("
      ").text(i.label)).appendTo(e)},_move:function(t,e){return this.menu.element.is(":visible")?this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),this.menu.blur(),void 0):(this.menu[t](e),void 0):(this.search(null,e),void 0)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){(!this.isMultiLine||this.menu.element.is(":visible"))&&(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),t.extend(t.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(e,i){var s=RegExp(t.ui.autocomplete.escapeRegex(i),"i");return t.grep(e,function(t){return s.test(t.label||t.value||t)})}}),t.widget("ui.autocomplete",t.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(t>1?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(e){var i;this._superApply(arguments),this.options.disabled||this.cancelSearch||(i=e&&e.length?this.options.messages.results(e.length):this.options.messages.noResults,this.liveRegion.children().hide(),t("
      ").text(i).appendTo(this.liveRegion))}}),t.ui.autocomplete}); \ No newline at end of file diff --git a/out/production/algodat-java-intro/javadoc/script-dir/jquery-ui.structure.min.css b/out/production/algodat-java-intro/javadoc/script-dir/jquery-ui.structure.min.css new file mode 100644 index 0000000..e880892 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/script-dir/jquery-ui.structure.min.css @@ -0,0 +1,5 @@ +/*! jQuery UI - v1.12.1 - 2018-12-06 +* http://jqueryui.com +* Copyright jQuery Foundation and other contributors; Licensed MIT */ + +.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0} \ No newline at end of file diff --git a/out/production/algodat-java-intro/javadoc/script.js b/out/production/algodat-java-intro/javadoc/script.js new file mode 100644 index 0000000..864989c --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/script.js @@ -0,0 +1,132 @@ +/* + * Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor); + elem.classList.add(isEvenRow ? evenRowColor : oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.querySelector('div#' + tableId +' .summary-table') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); + } + } +} + +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} + +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; + } + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + contentDiv.addEventListener("scroll", function(e) { + var timeoutID; + if (!timeoutID) { + timeoutID = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + timeoutID = null; + }, 100); + } + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); + } +}); diff --git a/out/production/algodat-java-intro/javadoc/search.js b/out/production/algodat-java-intro/javadoc/search.js new file mode 100644 index 0000000..db3b2f4 --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/search.js @@ -0,0 +1,354 @@ +/* + * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var noResult = {l: "No results found"}; +var loading = {l: "Loading search index..."}; +var catModules = "Modules"; +var catPackages = "Packages"; +var catTypes = "Classes and Interfaces"; +var catMembers = "Members"; +var catSearchTags = "Search Tags"; +var highlight = "$&"; +var searchPattern = ""; +var fallbackPattern = ""; +var RANKING_THRESHOLD = 2; +var NO_MATCH = 0xffff; +var MIN_RESULTS = 3; +var MAX_RESULTS = 500; +var UNNAMED = ""; +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(item, matcher, fallbackMatcher) { + var escapedItem = escapeHtml(item); + var highlighted = escapedItem.replace(matcher, highlight); + if (highlighted === escapedItem) { + highlighted = escapedItem.replace(fallbackMatcher, highlight) + } + return highlighted; +} +function getURLPrefix(ui) { + var urlPrefix=""; + var slash = "/"; + if (ui.item.category === catModules) { + return ui.item.l + slash; + } else if (ui.item.category === catPackages && ui.item.m) { + return ui.item.m + slash; + } else if (ui.item.category === catTypes || ui.item.category === catMembers) { + if (ui.item.m) { + urlPrefix = ui.item.m + slash; + } else { + $.each(packageSearchIndex, function(index, item) { + if (item.m && ui.item.p === item.l) { + urlPrefix = item.m + slash; + } + }); + } + } + return urlPrefix; +} +function createSearchPattern(term) { + var pattern = ""; + var isWordToken = false; + term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) { + if (index > 0) { + // whitespace between identifiers is significant + pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*"; + } + var tokens = w.split(/(?=[A-Z,.()<>[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + if (s === "") { + continue; + } + pattern += $.ui.autocomplete.escapeRegex(s); + isWordToken = /\w$/.test(s); + if (isWordToken) { + pattern += "([a-z0-9_$<>\\[\\]]*?)"; + } + } + }); + return pattern; +} +function createMatcher(pattern, flags) { + var isCamelCase = /[A-Z]/.test(pattern); + return new RegExp(pattern, flags + (isCamelCase ? "" : "i")); +} +var watermark = 'Search'; +$(function() { + var search = $("#search-input"); + var reset = $("#reset-button"); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + search.val(watermark).addClass('watermark'); + search.blur(function() { + if ($(this).val().length === 0) { + $(this).val(watermark).addClass('watermark'); + } + }); + search.on('click keydown paste', function() { + if ($(this).val() === watermark) { + $(this).val('').removeClass('watermark'); + } + }); + reset.click(function() { + search.val('').focus(); + }); + search.focus()[0].setSelectionRange(0, 0); +}); +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); + }, + _renderMenu: function(ul, items) { + var rMenu = this; + var currentCategory = ""; + rMenu.menu.bindings = $(); + $.each(items, function(index, item) { + var li; + if (item.category && item.category !== currentCategory) { + ul.append("
    • " + item.category + "
    • "); + currentCategory = item.category; + } + li = rMenu._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", item.category + " : " + item.l); + li.attr("class", "result-item"); + } else { + li.attr("aria-label", item.l); + li.attr("class", "result-item"); + } + }); + }, + _renderItem: function(ul, item) { + var label = ""; + var matcher = createMatcher(escapeHtml(searchPattern), "g"); + var fallbackMatcher = new RegExp(fallbackPattern, "gi") + if (item.category === catModules) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catPackages) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catTypes) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catMembers) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher); + } else if (item.category === catSearchTags) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else { + label = item.l; + } + var li = $("
    • ").appendTo(ul); + var div = $("
      ").appendTo(li); + if (item.category === catSearchTags && item.h) { + if (item.d) { + div.html(label + " (" + item.h + ")
      " + + item.d + "
      "); + } else { + div.html(label + " (" + item.h + ")"); + } + } else { + if (item.m) { + div.html(item.m + "/" + label); + } else { + div.html(label); + } + } + return li; + } +}); +function rankMatch(match, category) { + if (!match) { + return NO_MATCH; + } + var index = match.index; + var input = match.input; + var leftBoundaryMatch = 2; + var periferalMatch = 0; + // make sure match is anchored on a left word boundary + if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) { + leftBoundaryMatch = 0; + } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) { + leftBoundaryMatch = 1; + } + var matchEnd = index + match[0].length; + var leftParen = input.indexOf("("); + var endOfName = leftParen > -1 ? leftParen : input.length; + // exclude peripheral matches + if (category !== catModules && category !== catSearchTags) { + var delim = category === catPackages ? "/" : "."; + if (leftParen > -1 && leftParen < index) { + periferalMatch += 2; + } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) { + periferalMatch += 2; + } + } + var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match + for (var i = 1; i < match.length; i++) { + // lower ranking if parts of the name are missing + if (match[i]) + delta += match[i].length; + } + if (category === catTypes) { + // lower ranking if a type name contains unmatched camel-case parts + if (/[A-Z]/.test(input.substring(matchEnd))) + delta += 5; + if (/[A-Z]/.test(input.substring(0, index))) + delta += 5; + } + return leftBoundaryMatch + periferalMatch + (delta / 200); + +} +function doSearch(request, response) { + var result = []; + searchPattern = createSearchPattern(request.term); + fallbackPattern = createSearchPattern(request.term.toLowerCase()); + if (searchPattern === "") { + return this.close(); + } + var camelCaseMatcher = createMatcher(searchPattern, ""); + var fallbackMatcher = new RegExp(fallbackPattern, "i"); + + function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) { + if (indexArray) { + var newResults = []; + $.each(indexArray, function (i, item) { + item.category = category; + var ranking = rankMatch(matcher.exec(nameFunc(item)), category); + if (ranking < RANKING_THRESHOLD) { + newResults.push({ranking: ranking, item: item}); + } + return newResults.length <= MAX_RESULTS; + }); + return newResults.sort(function(e1, e2) { + return e1.ranking - e2.ranking; + }).map(function(e) { + return e.item; + }); + } + return []; + } + function searchIndex(indexArray, category, nameFunc) { + var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc); + result = result.concat(primaryResults); + if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) { + var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc); + result = result.concat(secondaryResults.filter(function (item) { + return primaryResults.indexOf(item) === -1; + })); + } + } + + searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; }); + searchIndex(packageSearchIndex, catPackages, function(item) { + return (item.m && request.term.indexOf("/") > -1) + ? (item.m + "/" + item.l) : item.l; + }); + searchIndex(typeSearchIndex, catTypes, function(item) { + return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l; + }); + searchIndex(memberSearchIndex, catMembers, function(item) { + return request.term.indexOf(".") > -1 + ? item.p + "." + item.c + "." + item.l : item.l; + }); + searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; }); + + if (!indexFilesLoaded()) { + updateSearchResults = function() { + doSearch(request, response); + } + result.unshift(loading); + } else { + updateSearchResults = function() {}; + } + response(result); +} +$(function() { + $("#search-input").catcomplete({ + minLength: 1, + delay: 300, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push(noResult); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.category) { + var url = getURLPrefix(ui); + if (ui.item.category === catModules) { + url += "module-summary.html"; + } else if (ui.item.category === catPackages) { + if (ui.item.u) { + url = ui.item.u; + } else { + url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (ui.item.category === catTypes) { + if (ui.item.u) { + url = ui.item.u; + } else if (ui.item.p === UNNAMED) { + url += ui.item.l + ".html"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; + } + } else if (ui.item.category === catMembers) { + if (ui.item.p === UNNAMED) { + url += ui.item.c + ".html" + "#"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; + } + if (ui.item.u) { + url += ui.item.u; + } else { + url += ui.item.l; + } + } else if (ui.item.category === catSearchTags) { + url += ui.item.u; + } + if (top !== window) { + parent.classFrame.location = pathtoroot + url; + } else { + window.location.href = pathtoroot + url; + } + $("#search-input").focus(); + } + } + }); +}); diff --git a/out/production/algodat-java-intro/javadoc/stylesheet.css b/out/production/algodat-java-intro/javadoc/stylesheet.css new file mode 100644 index 0000000..836c62d --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/stylesheet.css @@ -0,0 +1,865 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:#bb7a2a; +} +a[name] { + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; +} +h4 { + font-size:15px; +} +h5 { + font-size:14px; +} +h6 { + font-size:13px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +.summary-table dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size: 14px; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.clear { + clear:both; + height:0; + overflow:hidden; +} +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:11px; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* + * Styles for navigation bar. + */ +@media screen { + .flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + .flex-header { + flex: 0 0 auto; + } + .flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + min-height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.sub-nav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.sub-nav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list { + padding-top:5px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0 0 0 0; + padding:5px 6px; + clear:none; +} +.nav-list-search label { + position:relative; + right:-16px; +} +ul.sub-nav-list li { + list-style:none; + float:left; + padding-top:10px; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.nav-bar-cell1-rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header and footer. + */ +.title { + color:#2c4557; + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.see-list, ul.see-list-long { + padding-left: 0; + list-style: none; +} +ul.see-list li { + display: inline; +} +ul.see-list li:not(:last-child):after, +ul.see-list-long li:not(:last-child):after { + content: ", "; + white-space: pre-wrap; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0; + padding-top:10px; + padding-left:1px; + margin:0; + white-space:pre; +} +.caption a:link, .caption a:visited { + color:#1f389c; +} +.caption a:hover, +.caption a:active { + color:#FFFFFF; +} +.caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; +} +div.table-tabs > button.active-table-tab { + background: #F8981D; + color: #253441; +} +div.table-tabs > button.table-tab { + background: #4D7A97; + color: #FFFFFF; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto); +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +@media screen and (max-width: 800px) { + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-summary .col-last { + grid-column-end: span 2; + } +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:#dee3e9; + font-weight: bold; +} +.col-first, .col-first { + font-size:13px; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:13px; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited, +.constant-values-container a:link, .constant-values-container a:visited, +.all-classes-container a:link, .all-classes-container a:visited, +.all-packages-container a:link, .all-packages-container a:visited { + font-weight:bold; +} +.table-sub-heading-color { + background-color:#EEEEFF; +} +.even-row-color, .even-row-color .table-header { + background-color:#FFFFFF; +} +.odd-row-color, .odd-row-color .table-header { + background-color:#EEEEEF; +} +/* + * Styles for contents. + */ +.deprecated-content { + margin:0; + padding:10px 0; +} +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:0 10px 5px 0; + color:#474747; +} +.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:#4D7A97; + color:#FFFFFF; +} +.result-item { + font-size:13px; +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:scroll; + overflow-x:scroll; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:999999; +} +ul.ui-autocomplete li { + float:left; + clear:both; + width:100%; +} +.result-highlight { + font-weight:bold; +} +#search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + padding-left:20px; + position:relative; + right:-18px; + width:400px; +} +#reset-button { + background-color: rgb(255,255,255); + background-image:url('resources/x.png'); + background-position:center; + background-repeat:no-repeat; + background-size:12px; + border:0 none; + width:16px; + height:16px; + position:relative; + left:-4px; + top:-4px; + font-size:0px; +} +.watermark { + color:#545454; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:yellow; +} +.module-graph span { + display:none; + position:absolute; +} +.module-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0px 20px 5px 10px; + border: 1px solid #ededed; + background-color: #f8f8f8; +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +span.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} + +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid black; +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid black; +} +table.striped { + border-collapse: collapse; + border: 1px solid black; +} +table.striped > thead { + background-color: #E3E3E3; +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid black; +} +table.striped > tbody > tr:nth-child(even) { + background-color: #EEE +} +table.striped > tbody > tr:nth-child(odd) { + background-color: #FFF +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid black; + border-right: 1px solid black; +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak font sizes and paddings for small screens. + */ +@media screen and (max-width: 1050px) { + #search-input { + width: 300px; + } +} +@media screen and (max-width: 800px) { + #search-input { + width: 200px; + } + .top-nav, + .bottom-nav { + font-size: 11px; + padding-top: 6px; + } + .sub-nav { + font-size: 11px; + } + .about-language { + padding-right: 16px; + } + ul.nav-list li, + .sub-nav .nav-list-search { + padding: 6px; + } + ul.sub-nav-list li { + padding-top: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 500px) { + #search-input { + width: 150px; + } + .top-nav, + .bottom-nav { + font-size: 10px; + } + .sub-nav { + font-size: 10px; + } + .about-language { + font-size: 10px; + padding-right: 12px; + } +} diff --git a/out/production/algodat-java-intro/javadoc/tag-search-index.js b/out/production/algodat-java-intro/javadoc/tag-search-index.js new file mode 100644 index 0000000..0367dae --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/out/production/algodat-java-intro/javadoc/type-search-index.js b/out/production/algodat-java-intro/javadoc/type-search-index.js new file mode 100644 index 0000000..49c836f --- /dev/null +++ b/out/production/algodat-java-intro/javadoc/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"","l":"Main"}];updateSearchResults(); \ No newline at end of file diff --git a/out/production/algodat-java-intro/media/Main.pdf b/out/production/algodat-java-intro/media/Main.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9e1184c95b79cc0906a6c8b1f397d831b0667daf GIT binary patch literal 43011 zcmce;1y~%*wgyUYhv3eT0Kwf8+=3I_-QC@SYjAgW2<{Tx-CcuQ&|rB3duM0wb8_yv z?|$!l3^UWcx~jXYR@Yza|9kb2NDBy2)6+1+lGGfP-N7<51Ly#jIwr91-T`RE^(_qT zi~!6mK${FK005vBGB&f*w*h{eY1`=w=<8bQ>BDky!P?r{=xdw9I;E5*i&^3dqx7Df zlYe~=HeSCPE~o{lu$|Ki6GYa&&e&>~j_IZnWJilNyPC9=zr4`R3(z&jT8t3x-rM(d z{Ly$TvchoV+Pxkio3;Fosg1e0yRBF1Xpz~Jo0EB>`cw*TT4iuyv$n-l=?(TZWR(2? z2gw<)>zA5tJNA!gsb^fdncU_NAjV8v#w^%mTDr-AGERe`p6z*?`>KwND92x3&tGrxv^EP2~l+$us z-uW;hM%{_Qtr=d9*4bWsQ6&)=gC3@Crlw1@JWa94`mz}iinEF_Y@SJ!9|aL$kV48* z`*ls>ybILkY+;7r&gzS>3DRr*T^g}u*9l%5PwST^m_8_>o!GE4&6vLAp?R9OU+v?J z18R=m`J)a+ic!KdpRg5Lbt#Jv)L18U7z;g2`pqfjQY|QMA@yY*so51&nBs1}Efx-< z3wxhgDt_KgW}yE`N5L^AR^9c6K0N(Og1*!Jm}UNB$%0DZ1wAc;XM^iL|G1!;S>E>o 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 xFHg