From 9e044090ef229cdeca568aa9925c9e25dee5fd95 Mon Sep 17 00:00:00 2001 From: Arina Zubova Date: Sat, 27 Sep 2025 16:16:05 +0300 Subject: [PATCH 1/4] add parse to csv --- src/main/java/org/writer/Main.java | 22 ++++++++- src/main/java/org/writer/Writable.java | 3 +- src/main/java/org/writer/WritableImpl.java | 46 +++++++++++++++++++ .../java/org/writer/annotation/CsvColumn.java | 12 +++++ .../writer/exception/NoDataCSVException.java | 9 ++++ src/main/java/org/writer/model/Person.java | 6 +++ src/main/java/org/writer/model/Student.java | 3 ++ 7 files changed, 98 insertions(+), 3 deletions(-) create mode 100644 src/main/java/org/writer/WritableImpl.java create mode 100644 src/main/java/org/writer/annotation/CsvColumn.java create mode 100644 src/main/java/org/writer/exception/NoDataCSVException.java diff --git a/src/main/java/org/writer/Main.java b/src/main/java/org/writer/Main.java index 40e8213..51e6424 100644 --- a/src/main/java/org/writer/Main.java +++ b/src/main/java/org/writer/Main.java @@ -1,7 +1,25 @@ package org.writer; +import org.writer.model.Student; + +import java.io.IOException; +import java.util.Arrays; +import java.util.List; + public class Main { - public static void main(String[] args) { - System.out.println("Hello world!"); + public static void main(String[] args) throws IOException { + List students = Arrays.asList( + Student.builder() + .name("Alex") + .score(Arrays.asList("1", "2")) + .build(), + Student.builder() + .name("Max") + .score(Arrays.asList("2", "3")) + .build() + ); + + Writable csvWriter = new WritableImpl(); + csvWriter.writeToFile(students, "students"); } } \ No newline at end of file diff --git a/src/main/java/org/writer/Writable.java b/src/main/java/org/writer/Writable.java index 9f60c45..a7a85a1 100644 --- a/src/main/java/org/writer/Writable.java +++ b/src/main/java/org/writer/Writable.java @@ -1,9 +1,10 @@ package org.writer; +import java.io.IOException; import java.util.List; public interface Writable { - void writeToFile(List data, String fileName); + void writeToFile(List data, String fileName) throws IOException; } diff --git a/src/main/java/org/writer/WritableImpl.java b/src/main/java/org/writer/WritableImpl.java new file mode 100644 index 0000000..697a78a --- /dev/null +++ b/src/main/java/org/writer/WritableImpl.java @@ -0,0 +1,46 @@ +package org.writer; + +import org.writer.annotation.CsvColumn; +import org.writer.exception.NoDataCSVException; + +import java.io.FileWriter; +import java.io.IOException; +import java.lang.reflect.Field; +import java.util.List; +import java.util.stream.Collectors; + +public class WritableImpl implements Writable { + + @Override + public void writeToFile(List data, String fileName) throws IOException { + if (data == null || data.isEmpty()) throw new NoDataCSVException(); + + Class clazz = data.get(0).getClass(); + List fields = List.of(clazz.getDeclaredFields()); + + String header = fields.stream() + .filter(field -> field.isAnnotationPresent(CsvColumn.class)) + .map(field -> field.getAnnotation(CsvColumn.class).name()) + .collect(Collectors.joining(",")); + header += "\n"; + + String rows = data.stream() + .map(obj -> fields.stream() + .filter(field -> field.isAnnotationPresent(CsvColumn.class)) + .map(field -> { + try { + field.setAccessible(true); + var value = field.get(obj); + return String.valueOf(value); + } catch (IllegalAccessException e) { + return "NO_ACCESS"; + } + }).collect(Collectors.joining(",")) + ).collect(Collectors.joining("\n")); + String csv = header + rows; + + try (var fileWriter = new FileWriter(fileName)) { + fileWriter.write(csv); + } + } +} diff --git a/src/main/java/org/writer/annotation/CsvColumn.java b/src/main/java/org/writer/annotation/CsvColumn.java new file mode 100644 index 0000000..b81af94 --- /dev/null +++ b/src/main/java/org/writer/annotation/CsvColumn.java @@ -0,0 +1,12 @@ +package org.writer.annotation; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.FIELD) +public @interface CsvColumn { + String name(); +} diff --git a/src/main/java/org/writer/exception/NoDataCSVException.java b/src/main/java/org/writer/exception/NoDataCSVException.java new file mode 100644 index 0000000..4687db2 --- /dev/null +++ b/src/main/java/org/writer/exception/NoDataCSVException.java @@ -0,0 +1,9 @@ +package org.writer.exception; + +public class NoDataCSVException extends RuntimeException { + public static final String MSG = "There is no data to write to CSV"; + + public NoDataCSVException() { + super(MSG); + } +} diff --git a/src/main/java/org/writer/model/Person.java b/src/main/java/org/writer/model/Person.java index ba8576b..42494b8 100644 --- a/src/main/java/org/writer/model/Person.java +++ b/src/main/java/org/writer/model/Person.java @@ -3,20 +3,26 @@ import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; +import org.writer.annotation.CsvColumn; @Data @Builder @AllArgsConstructor public class Person { + @CsvColumn(name = "First name") private String firstName; + @CsvColumn(name = "Last name") private String lastName; + @CsvColumn(name = "Day of birth") private int dayOfBirth; + @CsvColumn(name = "Month of birth") private Months monthOfBirth; + @CsvColumn(name = "Year of birth") private int yearOfBirth; } diff --git a/src/main/java/org/writer/model/Student.java b/src/main/java/org/writer/model/Student.java index 2b549c4..14791af 100644 --- a/src/main/java/org/writer/model/Student.java +++ b/src/main/java/org/writer/model/Student.java @@ -3,6 +3,7 @@ import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; +import org.writer.annotation.CsvColumn; import java.util.List; @@ -11,7 +12,9 @@ @AllArgsConstructor public class Student { + @CsvColumn(name = "Student name") private String name; + @CsvColumn(name = "Student score") private List score; } \ No newline at end of file From c79fc0827242cd2879b12754f779a36e26036f7d Mon Sep 17 00:00:00 2001 From: Arina Zubova Date: Sat, 27 Sep 2025 17:02:55 +0300 Subject: [PATCH 2/4] add test --- pom.xml | 6 +++ src/main/java/org/writer/Main.java | 28 ++++++++++-- src/test/java/org/writer/WritableTest.java | 51 ++++++++++++++++++++++ 3 files changed, 81 insertions(+), 4 deletions(-) create mode 100644 src/test/java/org/writer/WritableTest.java diff --git a/pom.xml b/pom.xml index effc1bd..ec5beee 100644 --- a/pom.xml +++ b/pom.xml @@ -27,6 +27,12 @@ 5.8.1 test + + net.datafaker + datafaker + 2.5.1 + test + \ No newline at end of file diff --git a/src/main/java/org/writer/Main.java b/src/main/java/org/writer/Main.java index 51e6424..3c00f30 100644 --- a/src/main/java/org/writer/Main.java +++ b/src/main/java/org/writer/Main.java @@ -1,5 +1,7 @@ package org.writer; +import org.writer.model.Months; +import org.writer.model.Person; import org.writer.model.Student; import java.io.IOException; @@ -10,16 +12,34 @@ public class Main { public static void main(String[] args) throws IOException { List students = Arrays.asList( Student.builder() - .name("Alex") + .name("Max") .score(Arrays.asList("1", "2")) .build(), Student.builder() - .name("Max") - .score(Arrays.asList("2", "3")) + .name("Lewis") + .score(Arrays.asList("22", "33")) + .build() + ); + + List persons = Arrays.asList( + Person.builder() + .firstName("Max") + .lastName("Verstappen") + .dayOfBirth(7) + .monthOfBirth(Months.JANUARY) + .yearOfBirth(1985) + .build(), + Person.builder() + .firstName("Lewis") + .lastName("Hamilton") + .dayOfBirth(30) + .monthOfBirth(Months.SEPTEMBER) + .yearOfBirth(1997) .build() ); Writable csvWriter = new WritableImpl(); - csvWriter.writeToFile(students, "students"); + csvWriter.writeToFile(students, "students.csv"); + csvWriter.writeToFile(persons, "persons.csv"); } } \ No newline at end of file diff --git a/src/test/java/org/writer/WritableTest.java b/src/test/java/org/writer/WritableTest.java new file mode 100644 index 0000000..7a94a71 --- /dev/null +++ b/src/test/java/org/writer/WritableTest.java @@ -0,0 +1,51 @@ +package org.writer; + +import net.datafaker.Faker; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.writer.model.Months; +import org.writer.model.Person; +import org.writer.model.Student; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.List; +import java.util.stream.IntStream; + +class WritableTest { + + private final Faker faker = new Faker(); + private final Writable csvWriter = new WritableImpl(); + + @Test + void writeToFilePersonTest() throws IOException { + List persons = IntStream.range(0, 5) + .mapToObj(o -> Person.builder() + .firstName(faker.name().firstName()) + .lastName(faker.name().firstName()) + .dayOfBirth(faker.number().numberBetween(1, 28)) + .monthOfBirth(faker.options().option(Months.class)) + .yearOfBirth(faker.number().numberBetween(1990, 2010)) + .build()) + .toList(); + + csvWriter.writeToFile(persons, "persons.csv"); + + Assertions.assertTrue(Files.exists(Paths.get("persons.csv"))); + } + + @Test + void writeToFileStudentTest() throws IOException { + List students = IntStream.range(0, 5) + .mapToObj(o -> Student.builder() + .name(faker.name().firstName()) + .score(List.of(faker.number().digits(3))) + .build()) + .toList(); + + csvWriter.writeToFile(students, "students.csv"); + + Assertions.assertTrue(Files.exists(Paths.get("students.csv"))); + } +} \ No newline at end of file From f23f2b20f17bee5a309b9fda4b1990a7794d08fe Mon Sep 17 00:00:00 2001 From: Arina Zubova Date: Sat, 27 Sep 2025 17:57:03 +0300 Subject: [PATCH 3/4] add javadoc --- README.md | 8 ++++++- pom.xml | 15 ++++++++++++ src/main/java/org/writer/WritableImpl.java | 24 +++++++++++++++++++ .../java/org/writer/annotation/CsvColumn.java | 12 ++++++++++ .../writer/exception/NoDataCSVException.java | 4 ++++ src/main/java/org/writer/model/Person.java | 22 +++++++++++++++++ src/main/java/org/writer/model/Student.java | 13 ++++++++++ 7 files changed, 97 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d6f44cb..9deea83 100644 --- a/README.md +++ b/README.md @@ -17,4 +17,10 @@ 2. Сделать ветку dev в своем проекте. Выполнять работу в ней 3. После выполнения работы открыть Pull Request в master 4. Назначить ментора ревьювером -5. Отправить ссылку на PR в тг чат ментору \ No newline at end of file +5. Отправить ссылку на PR в тг чат ментору + +**Как сгененировать javadoc:**
+Выполнить в корне проекта: +``` +mvn javadoc:javadoc +``` \ No newline at end of file diff --git a/pom.xml b/pom.xml index ec5beee..b452632 100644 --- a/pom.xml +++ b/pom.xml @@ -35,4 +35,19 @@ + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + ${project.basedir}/docs + apidocs + 17 + + + + + \ No newline at end of file diff --git a/src/main/java/org/writer/WritableImpl.java b/src/main/java/org/writer/WritableImpl.java index 697a78a..970fea3 100644 --- a/src/main/java/org/writer/WritableImpl.java +++ b/src/main/java/org/writer/WritableImpl.java @@ -9,8 +9,32 @@ import java.util.List; import java.util.stream.Collectors; +/** + * Реализация интерфейса {@link Writable}, которая позволяет сериализовать список объектов + * в CSV‑файл с использованием аннотации {@link CsvColumn}. + *

+ * Алгоритм работы: + *

    + *
  1. Проверяется, что список данных не пустой, иначе выбрасывается {@link NoDataCSVException}.
  2. + *
  3. Через Reflection извлекаются все поля класса первого объекта.
  4. + *
  5. Формируется строка заголовков CSV на основе значений {@link CsvColumn#name()}.
  6. + *
  7. Для каждого объекта формируется строка с его значениями.
  8. + *
  9. Результат записывается в указанный файл.
  10. + *
+ */ public class WritableImpl implements Writable { + /** + * Записывает список объектов в CSV‑файл. + *

+ * Для сериализации учитываются только те поля, которые помечены аннотацией {@link CsvColumn}. + * Если список пустой или равен {@code null}, выбрасывается {@link NoDataCSVException}. + * + * @param data список объектов для записи + * @param fileName имя файла, в который будет записан результат + * @throws IOException если произошла ошибка при записи в файл + * @throws NoDataCSVException если список {@code data} пустой или равен {@code null} + */ @Override public void writeToFile(List data, String fileName) throws IOException { if (data == null || data.isEmpty()) throw new NoDataCSVException(); diff --git a/src/main/java/org/writer/annotation/CsvColumn.java b/src/main/java/org/writer/annotation/CsvColumn.java index b81af94..d631c12 100644 --- a/src/main/java/org/writer/annotation/CsvColumn.java +++ b/src/main/java/org/writer/annotation/CsvColumn.java @@ -5,8 +5,20 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; +/** + * Аннотация {@code CsvColumn} используется для пометки полей класса, + * которые должны быть включены в CSV‑отчёт. + *

+ * Может применяться только к полям. Сохраняется во время выполнения, + * что позволяет работать с ней через Reflection. + */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface CsvColumn { + /** + * Имя колонки в CSV‑файле, соответствующее данному полю. + * + * @return название столбца в CSV + */ String name(); } diff --git a/src/main/java/org/writer/exception/NoDataCSVException.java b/src/main/java/org/writer/exception/NoDataCSVException.java index 4687db2..5d7b01b 100644 --- a/src/main/java/org/writer/exception/NoDataCSVException.java +++ b/src/main/java/org/writer/exception/NoDataCSVException.java @@ -1,5 +1,9 @@ package org.writer.exception; +/** + * Исключение {@code NoDataCSVException} выбрасывается в случаях, + * когда отсутствуют данные для записи в CSV‑файл. + */ public class NoDataCSVException extends RuntimeException { public static final String MSG = "There is no data to write to CSV"; diff --git a/src/main/java/org/writer/model/Person.java b/src/main/java/org/writer/model/Person.java index 42494b8..ffd2574 100644 --- a/src/main/java/org/writer/model/Person.java +++ b/src/main/java/org/writer/model/Person.java @@ -5,23 +5,45 @@ import lombok.Data; import org.writer.annotation.CsvColumn; +/** + * Класс {@code Person} представляет модель человека, + * данные которого могут быть сериализованы в CSV‑файл. + *

+ * Для каждого поля используется аннотация {@link CsvColumn}, + * которая определяет название соответствующей колонки в CSV‑отчёте. + */ @Data @Builder @AllArgsConstructor public class Person { + /** + * Имя человека. + */ @CsvColumn(name = "First name") private String firstName; + /** + * Фамилия человека. + */ @CsvColumn(name = "Last name") private String lastName; + /** + * День рождения (число месяца). + */ @CsvColumn(name = "Day of birth") private int dayOfBirth; + /** + * Месяц рождения. + */ @CsvColumn(name = "Month of birth") private Months monthOfBirth; + /** + * Год рождения. + */ @CsvColumn(name = "Year of birth") private int yearOfBirth; diff --git a/src/main/java/org/writer/model/Student.java b/src/main/java/org/writer/model/Student.java index 14791af..a103fa4 100644 --- a/src/main/java/org/writer/model/Student.java +++ b/src/main/java/org/writer/model/Student.java @@ -7,14 +7,27 @@ import java.util.List; +/** + * Класс {@code Student} представляет модель студента, + * данные которого могут быть сериализованы в CSV‑файл. + *

+ * Для каждого поля используется аннотация {@link CsvColumn}, + * которая определяет название соответствующей колонки в CSV‑отчёте. + */ @Data @Builder @AllArgsConstructor public class Student { + /** + * Имя студента. + */ @CsvColumn(name = "Student name") private String name; + /** + * Список результатов (оценок) студента. + */ @CsvColumn(name = "Student score") private List score; } \ No newline at end of file From 5fe6025fc9d3b14b5c20c05e3b76075d422556d7 Mon Sep 17 00:00:00 2001 From: Arina Zubova Date: Sat, 6 Dec 2025 11:53:59 +0300 Subject: [PATCH 4/4] add gradle --- .gradle/9.2.1/checksums/checksums.lock | Bin 0 -> 17 bytes .gradle/9.2.1/checksums/md5-checksums.bin | Bin 0 -> 20397 bytes .gradle/9.2.1/checksums/sha1-checksums.bin | Bin 0 -> 22115 bytes .../executionHistory/executionHistory.bin | Bin 0 -> 45895 bytes .../executionHistory/executionHistory.lock | Bin 0 -> 17 bytes .gradle/9.2.1/fileChanges/last-build.bin | Bin 0 -> 1 bytes .gradle/9.2.1/fileHashes/fileHashes.bin | Bin 0 -> 20397 bytes .gradle/9.2.1/fileHashes/fileHashes.lock | Bin 0 -> 17 bytes .../9.2.1/fileHashes/resourceHashesCache.bin | Bin 0 -> 19143 bytes .gradle/9.2.1/gc.properties | 0 .../buildOutputCleanup.lock | Bin 0 -> 17 bytes .gradle/buildOutputCleanup/cache.properties | 2 + .gradle/buildOutputCleanup/outputFiles.bin | Bin 0 -> 19091 bytes .../.globals.work.bin | 2 + .../.strings.work.bin | Bin 0 -> 3271 bytes .../_.work.bin | Bin 0 -> 503 bytes .../buildfingerprint.bin | Bin 0 -> 2308 bytes .../classloaderscopes.bin | Bin 0 -> 1 bytes .../entry.bin | Bin 0 -> 73 bytes .../projectfingerprint.bin | Bin 0 -> 434 bytes .../work.bin | 1 + .../901izitdz0kkm37ehzk5k6hfa/candidates.bin | 1 + .../configuration-cache.lock | Bin 0 -> 17 bytes .gradle/configuration-cache/gc.properties | 0 .gradle/file-system.probe | Bin 0 -> 8 bytes .gradle/vcs-1/gc.properties | 0 .idea/.gitignore | 3 + .idea/encodings.xml | 7 + .idea/gradle.xml | 16 + .idea/misc.xml | 12 + .idea/uiDesigner.xml | 124 ++ .idea/vcs.xml | 6 + build.gradle | 42 + docs/apidocs/allclasses-index.html | 102 ++ docs/apidocs/allpackages-index.html | 75 + docs/apidocs/constant-values.html | 84 ++ docs/apidocs/copy.svg | 33 + docs/apidocs/element-list | 4 + docs/apidocs/help-doc.html | 203 +++ docs/apidocs/index-all.html | 195 +++ docs/apidocs/index.html | 77 + docs/apidocs/legal/ADDITIONAL_LICENSE_INFO | 37 + docs/apidocs/legal/ASSEMBLY_EXCEPTION | 27 + docs/apidocs/legal/LICENSE | 347 +++++ docs/apidocs/legal/jquery.md | 72 + docs/apidocs/legal/jqueryUI.md | 49 + docs/apidocs/link.svg | 31 + docs/apidocs/member-search-index.js | 1 + docs/apidocs/module-search-index.js | 1 + docs/apidocs/org/writer/Main.html | 182 +++ docs/apidocs/org/writer/Writable.html | 154 ++ docs/apidocs/org/writer/WritableImpl.html | 212 +++ .../org/writer/annotation/CsvColumn.html | 149 ++ .../annotation/class-use/CsvColumn.html | 62 + .../writer/annotation/package-summary.html | 114 ++ .../org/writer/annotation/package-tree.html | 72 + .../org/writer/annotation/package-use.html | 62 + docs/apidocs/org/writer/class-use/Main.html | 62 + .../org/writer/class-use/Writable.html | 90 ++ .../org/writer/class-use/WritableImpl.html | 62 + .../writer/exception/NoDataCSVException.html | 210 +++ .../class-use/NoDataCSVException.html | 62 + .../org/writer/exception/package-summary.html | 114 ++ .../org/writer/exception/package-tree.html | 88 ++ .../org/writer/exception/package-use.html | 62 + docs/apidocs/org/writer/model/Months.html | 316 ++++ docs/apidocs/org/writer/model/Person.html | 155 ++ docs/apidocs/org/writer/model/Student.html | 155 ++ .../org/writer/model/class-use/Months.html | 95 ++ .../org/writer/model/class-use/Person.html | 62 + .../org/writer/model/class-use/Student.html | 62 + .../org/writer/model/package-summary.html | 123 ++ .../org/writer/model/package-tree.html | 91 ++ .../apidocs/org/writer/model/package-use.html | 84 ++ docs/apidocs/org/writer/package-summary.html | 120 ++ docs/apidocs/org/writer/package-tree.html | 83 ++ docs/apidocs/org/writer/package-use.html | 84 ++ docs/apidocs/overview-summary.html | 26 + docs/apidocs/overview-tree.html | 121 ++ docs/apidocs/package-search-index.js | 1 + docs/apidocs/resources/glass.png | Bin 0 -> 499 bytes docs/apidocs/resources/x.png | Bin 0 -> 394 bytes docs/apidocs/script-dir/jquery-3.6.1.min.js | 2 + docs/apidocs/script-dir/jquery-ui.min.css | 6 + docs/apidocs/script-dir/jquery-ui.min.js | 6 + docs/apidocs/script.js | 253 ++++ docs/apidocs/search-page.js | 284 ++++ docs/apidocs/search.html | 77 + docs/apidocs/search.js | 458 ++++++ docs/apidocs/serialized-form.html | 77 + docs/apidocs/stylesheet.css | 1272 +++++++++++++++++ docs/apidocs/tag-search-index.js | 1 + docs/apidocs/type-search-index.js | 1 + gradle.properties | 5 + gradle/libs.versions.toml | 12 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 45633 bytes gradle/wrapper/gradle-wrapper.properties | 7 + gradlew | 248 ++++ gradlew.bat | 93 ++ settings.gradle | 5 + 100 files changed, 7696 insertions(+) create mode 100644 .gradle/9.2.1/checksums/checksums.lock create mode 100644 .gradle/9.2.1/checksums/md5-checksums.bin create mode 100644 .gradle/9.2.1/checksums/sha1-checksums.bin create mode 100644 .gradle/9.2.1/executionHistory/executionHistory.bin create mode 100644 .gradle/9.2.1/executionHistory/executionHistory.lock create mode 100644 .gradle/9.2.1/fileChanges/last-build.bin create mode 100644 .gradle/9.2.1/fileHashes/fileHashes.bin create mode 100644 .gradle/9.2.1/fileHashes/fileHashes.lock create mode 100644 .gradle/9.2.1/fileHashes/resourceHashesCache.bin create mode 100644 .gradle/9.2.1/gc.properties create mode 100644 .gradle/buildOutputCleanup/buildOutputCleanup.lock create mode 100644 .gradle/buildOutputCleanup/cache.properties create mode 100644 .gradle/buildOutputCleanup/outputFiles.bin create mode 100644 .gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/.globals.work.bin create mode 100644 .gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/.strings.work.bin create mode 100644 .gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/_.work.bin create mode 100644 .gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/buildfingerprint.bin create mode 100644 .gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/classloaderscopes.bin create mode 100644 .gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/entry.bin create mode 100644 .gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/projectfingerprint.bin create mode 100644 .gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/work.bin create mode 100644 .gradle/configuration-cache/901izitdz0kkm37ehzk5k6hfa/candidates.bin create mode 100644 .gradle/configuration-cache/configuration-cache.lock create mode 100644 .gradle/configuration-cache/gc.properties create mode 100644 .gradle/file-system.probe create mode 100644 .gradle/vcs-1/gc.properties create mode 100644 .idea/.gitignore create mode 100644 .idea/encodings.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 build.gradle create mode 100644 docs/apidocs/allclasses-index.html create mode 100644 docs/apidocs/allpackages-index.html create mode 100644 docs/apidocs/constant-values.html create mode 100644 docs/apidocs/copy.svg create mode 100644 docs/apidocs/element-list create mode 100644 docs/apidocs/help-doc.html create mode 100644 docs/apidocs/index-all.html create mode 100644 docs/apidocs/index.html create mode 100644 docs/apidocs/legal/ADDITIONAL_LICENSE_INFO create mode 100644 docs/apidocs/legal/ASSEMBLY_EXCEPTION create mode 100644 docs/apidocs/legal/LICENSE create mode 100644 docs/apidocs/legal/jquery.md create mode 100644 docs/apidocs/legal/jqueryUI.md create mode 100644 docs/apidocs/link.svg create mode 100644 docs/apidocs/member-search-index.js create mode 100644 docs/apidocs/module-search-index.js create mode 100644 docs/apidocs/org/writer/Main.html create mode 100644 docs/apidocs/org/writer/Writable.html create mode 100644 docs/apidocs/org/writer/WritableImpl.html create mode 100644 docs/apidocs/org/writer/annotation/CsvColumn.html create mode 100644 docs/apidocs/org/writer/annotation/class-use/CsvColumn.html create mode 100644 docs/apidocs/org/writer/annotation/package-summary.html create mode 100644 docs/apidocs/org/writer/annotation/package-tree.html create mode 100644 docs/apidocs/org/writer/annotation/package-use.html create mode 100644 docs/apidocs/org/writer/class-use/Main.html create mode 100644 docs/apidocs/org/writer/class-use/Writable.html create mode 100644 docs/apidocs/org/writer/class-use/WritableImpl.html create mode 100644 docs/apidocs/org/writer/exception/NoDataCSVException.html create mode 100644 docs/apidocs/org/writer/exception/class-use/NoDataCSVException.html create mode 100644 docs/apidocs/org/writer/exception/package-summary.html create mode 100644 docs/apidocs/org/writer/exception/package-tree.html create mode 100644 docs/apidocs/org/writer/exception/package-use.html create mode 100644 docs/apidocs/org/writer/model/Months.html create mode 100644 docs/apidocs/org/writer/model/Person.html create mode 100644 docs/apidocs/org/writer/model/Student.html create mode 100644 docs/apidocs/org/writer/model/class-use/Months.html create mode 100644 docs/apidocs/org/writer/model/class-use/Person.html create mode 100644 docs/apidocs/org/writer/model/class-use/Student.html create mode 100644 docs/apidocs/org/writer/model/package-summary.html create mode 100644 docs/apidocs/org/writer/model/package-tree.html create mode 100644 docs/apidocs/org/writer/model/package-use.html create mode 100644 docs/apidocs/org/writer/package-summary.html create mode 100644 docs/apidocs/org/writer/package-tree.html create mode 100644 docs/apidocs/org/writer/package-use.html create mode 100644 docs/apidocs/overview-summary.html create mode 100644 docs/apidocs/overview-tree.html create mode 100644 docs/apidocs/package-search-index.js create mode 100644 docs/apidocs/resources/glass.png create mode 100644 docs/apidocs/resources/x.png create mode 100644 docs/apidocs/script-dir/jquery-3.6.1.min.js create mode 100644 docs/apidocs/script-dir/jquery-ui.min.css create mode 100644 docs/apidocs/script-dir/jquery-ui.min.js create mode 100644 docs/apidocs/script.js create mode 100644 docs/apidocs/search-page.js create mode 100644 docs/apidocs/search.html create mode 100644 docs/apidocs/search.js create mode 100644 docs/apidocs/serialized-form.html create mode 100644 docs/apidocs/stylesheet.css create mode 100644 docs/apidocs/tag-search-index.js create mode 100644 docs/apidocs/type-search-index.js create mode 100644 gradle.properties create mode 100644 gradle/libs.versions.toml create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle diff --git a/.gradle/9.2.1/checksums/checksums.lock b/.gradle/9.2.1/checksums/checksums.lock new file mode 100644 index 0000000000000000000000000000000000000000..8f6412a0ea1b3d099c3b4cb67d8d921054426f1c GIT binary patch literal 17 UcmZR6BqM9o$-ZJ20|XQT04Qt&v;Y7A literal 0 HcmV?d00001 diff --git a/.gradle/9.2.1/checksums/md5-checksums.bin b/.gradle/9.2.1/checksums/md5-checksums.bin new file mode 100644 index 0000000000000000000000000000000000000000..d111225f6d1d0d3c43c0621ed46355b752cbdeef GIT binary patch literal 20397 zcmeI3dr%Wc9LKLHD3baB1xad|=;%P@If8?N8mvM>AW_R6r>LK5(q46C4#$D7|BMtLF9(|8{;m!*TP;esA|ax!?Yi z+ZhZqa%eAZ%=$nk~y=wlRV4Dl=i2HRAetdeuEfbqGKg`vHmu-1e z!8oi7LR`9@@Dq#jH{1z-szY2BL3sJIrDLYP339{N2_*b%o91do%9{O%`zI4#aW>K_ z`O&NS`1)Ri-&kXub9KtjPJDe+!f$r(?w%RD?gzw`GQuBT*VMoIE&n0D{z<~0hc9%= zcoN@&`&$vNKetjpB_!Daad{`p@T!%gZ!P|&3vsy<;Z`S|?x#mP;^#yeL%7W~%MK&0mXZ_Iwu|X z&m`RE%#G;vhh=|YUPbuaNs;kWW7^Imt~f^cyp8|Vl|0np=UJirpQo(tXss?5qyBOY z;bFSM6=jy?)|g)=Jls;^s9U9&hPbqW@R-1^zumlYRfx+x2q*s;rr$5C3p`zHMtS$c8C3zReF zb__UvoUonpb52NY{IY}3L!E@ini`Zi*oYD#+@%c?lF2#s38%fb+66c7xp3X06eWHg zjS?gNwJroh40mIo0qrfQKFdb$hEJAu?K@$3HA1Nbu&XfGoEd`uYaOe;xR7u1(?Cy z4he(Ar1Y;%M4>eU4ofzwqkpn`i^niW2^SZBBI}G}%hwyHf zVchNqgZr3$ORdf6@f`i~eDtpL%}(wpapWbMl^~X%sC%tg)HJ&}TT!a(OsSj5Rw?&f zm2%%T+lD8w2ZJ$eghkoQz3->Gt_qT;@iBvRv*e*5*sC($bOStqpc;Bm0`=^yUWT^g0?bHR=CWV zce!yWL0jP{E5nCleA>#uCL(sAF=#6TrD`)7bEO0&XjMz8sEjj>)_EvFt0+pHXS%DW z;aPoRoqv#^)j6eVw_Y*T2cuchs+LkwtgE$aP=Z!blsZ=#Wk%gY30j>~DvBMW+8HHi Q6-B8JHnF1>C;IB+Kf4UadjJ3c literal 0 HcmV?d00001 diff --git a/.gradle/9.2.1/checksums/sha1-checksums.bin b/.gradle/9.2.1/checksums/sha1-checksums.bin new file mode 100644 index 0000000000000000000000000000000000000000..c24ec95cc31b77fbb35ab7e78bce358588424306 GIT binary patch literal 22115 zcmeI3do)yQAIE3Nr4Y^tT~K+Ot~7`^PA)HU8OA-OgLG3dNaYe0iS&|4XgUs+6{k9?7y@peJm$}zfjo6+ijs) zRIB;}aO)w+Gril7{%m!AF5q^Kke|BJqW+Is4NbtAryxJ?BEwq0X6zo|&H>{*?)%&O z9O-;xTm?9@74piyl)JSF zff<0?K>YcJzG{NU!2u0|&xe2bb%l~_Uf`j}fLmW1=i8qDT2QS-%xN71c}9 zV&Z-3Ag_B~(VD!u&J1u@HOTK(uRL|#wm}DQr*z006)oKxURZSl?rbp5?;Y(dRg6v{ zcn;*voqm~x+i$NS-e>VR{}lhpVqcIu;4boz_tMmBpF7Q82Dps}T50G#QLU?kCd;mI#E|_0J!~f z$lvYOrS+8R65K%+a;|Ez&f{1+-mi{AaVQ<<=FyX{>U{cv=v@f;XNIo(1xI=j;I37W zQ+35%y%t0f>)W?OE)w3`p8T-o23Vh|3%Te%uA344LondZqL5Ganuxzd%TPt(FQiT#7i1;~}B zkCtT&U5O>u4}*MG<3&dA*WyL@f$SOW)QtHkQ*{%@*Bp2RROoBLT=W8M;V3p z-2{A<2IOwL`df;hT@MA^ZYJdJ+`w>ld;;z{hpEvRrtZ&bTeB(kBFZG7T z0Klz^AorbWrk$hmiuk>=ydV!&a*9zB)pi2wJ0603PvVhRTCsATfZOxcF$apE@& z)KW>4p!c*jE@m|^l{8WfI868Mz`7!)c5NyLWzvy?UEyi# z&c5?juW{RyailZbg1xr-2{sy)6F!!OuZ=BU3$X`28zf!Wgt=HJzWjx*uTsLgZq>fe zd-f>E^q`U}b+p@cm}*rqh)uXJ)LM_YN_g6TutL5GNm5u>9&s;(u+%Qw$3tRzJx}MS z-r6iT`pLezl<@}Z!c)Gy&7#a)@^^LR$Yz=!juYQ9AX>jXMQzpEGff_8MArk*MZ>R7 z=i9Cs>aVM(JS>!%om*-)3;8~ONT z*rI^n?!(umRbMODSoAU>`H0P`12TycI~PTIe4A1<5llInbY<>^3wUDcpVSZdvj0eX4Hx`dL)&u%6R?y#|$uYcm(u37SeT_h>2s{m9{{=QWA zr)Z17=KDjL)3cB1Ilf_CCOlrzG5sVc)6&A8`OK4~@Cm;oPyJF8V0|e=FDyds z^2lqqkN`SOvT6N2vRHbEE z*#3eVE5ZqV0#ah{1-nR6c$W`(%7AWdJ0m%CJLPGS#<`t(_2$f&vsf3NDh4T;^MYM% zZ*;ak_v;JRj*QJJUY{9T&@^8fOJPTc?Zmw$QnC|H;az`#E@7!zDZ?cycW(aX=*Im? z@?+RB+Q*&qTMjImU(izJ12?d5d|O~u`@oIHB2 zwxW=#>9G9d>qQ$mE3wb%t0S!Drm2EmBq_Wrp4TNbwMoA`vHV7y{Pl4EF{hOub*nt3 zuwx_sDSO}Nr9_6i1iMI5cvlX2YC)Ci6}6w(iL=GE9{SJD9g%o@l6U5iWAe0>m!hcP zcRTWZ$|Nbgi@0Y`SSp>t_E4BR*Vl^93Ai|*a=F#GdkgMxd@m{%f$vTEx+to8ODfs2 zbJvRdxW#&^8w9!TJOFGE$1iFeet+V`Quu^mKQAeF!s!2~6c(>ZYjM{#}*ni38-4D3t62ydwpo^A?J@ZXCr`%t%;AxQ54Qhz! zW{y>5+Hd*^V8VJUUP?3ycR8^XJ|Q?u5t@2lV>p`hIPR=dIO~y8nUUqBBNDx!>%d1| gmq-i#JLBsjNnu@OlH@6pqxqgYlLtL{DdK4UU+6C&0ssI2 literal 0 HcmV?d00001 diff --git a/.gradle/9.2.1/executionHistory/executionHistory.bin b/.gradle/9.2.1/executionHistory/executionHistory.bin new file mode 100644 index 0000000000000000000000000000000000000000..e075f5f0f29ddfe97f1dd2857334694e4850cb03 GIT binary patch literal 45895 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 literal 0 HcmV?d00001 diff --git a/.gradle/9.2.1/executionHistory/executionHistory.lock b/.gradle/9.2.1/executionHistory/executionHistory.lock new file mode 100644 index 0000000000000000000000000000000000000000..108a34a93bac105b61f0f34f5187954c2622d3db GIT binary patch literal 17 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 literal 0 HcmV?d00001 diff --git a/.gradle/9.2.1/gc.properties b/.gradle/9.2.1/gc.properties new file mode 100644 index 0000000..e69de29 diff --git a/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/.gradle/buildOutputCleanup/buildOutputCleanup.lock new file mode 100644 index 0000000000000000000000000000000000000000..a298bdc7705e8e9e99a769fbf27991bb2c27790b GIT binary patch literal 17 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 tvip;Z$hf_f5(tC#kF^$BB`xk92(8@ri?__hE5 literal 0 HcmV?d00001 diff --git a/.gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/buildfingerprint.bin b/.gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/buildfingerprint.bin new file mode 100644 index 0000000000000000000000000000000000000000..fac0202e596a9a1e1f0e4f49eb0dc0ee0ffd2e99 GIT binary patch literal 2308 zcmV+f3H$cyy3-IF7u~dtwgKFPW*IiXJ_I3p^3|D4bIi(_Kx~@;Hdz5|k+_#M zpGV>6$>`X@X!TPyX0?0~_u^0To2DkRco<#hnAVNnmmRLb0c7s&p>O)s@jZd>pECI) zb*Cp3FD~9v>_@W(#*1t>bB;SxCP0skK`)FBoP_iO&gJ^21k*$M-8iY8|0!O=C{;cK z0+Jhjwb0sdis97P@sz(i+5mK|-U>0mc=)#jrcWTpqb^ zX6faq^`LML2TH4HsU~HYzppSNeCCx-GdxBT)oDio zT#juz2sxkp2ry>y?spT@6Q0U_-3a*bgLEOL^UtaR;rot77e08;gD<0`JcwyvO8sN0 zz7)?#ruq}x_AVKTX?NOjL!vw$V71}!mw)IQdC~%dO7F9CWY@IL5*a*LE>dc%>i46{ z2)aK^x~o|AQ0nIWd$r2xw$HH#zY|Z~X48EP8)-3AEbR`5K%@P4eQ8gDN-qZ=@-wOr zJ-i~@=`lwU{v2-z_qn88pP{#Twj>S#x~h_{F+O&v$3=D;4y%9^G~<;u2Er!_F+DQN zq{#>2C8Y9~QR~$xNiK0EGztLNz+As?8pmwwoAN?Q*)s-Xpc%?Ou)P9O3dnN8O^51E z9d{-uZf-kGBBrKaMT}BPzs75@xo`OV$sU9yC>-FY*x&GauJYtWs_qGMd)?LetrL zv3fp$JQfl8+RZI!K5UG&d;1Avnx&jhtbVwx=yoWD z@EQSwTf6yT*4I9-==)Q@AGe%*tSRlkJJV&fV(fS5c(Nr9|c@|(dj?N~nYpfvbEtXBim1JJ_VaGj^ts>_^5vdtV4k$kK*KN*l(v>%s(i}@MddVj zDbI$Q9ME`&;uHwmV0^W>K*WBZ8yoIiIV$__NOg?1E$jRL6iGD2Bvm{9D+$vR$dby+ zpMIf8?<%St2~Drob>HQ+ZHl%-(eaDP+vcJi>u(+I&4EfCAP8WLyU|#{2&CAeo0pQKXLzrb_eDGM;|R7xp4{XTJ^3J zR;rIgoCuo%X&3-$QNC-Tg*1#A%8G*?ecu%$3DZ&f+L{He7H&)!A(s~?nPGnI%lK*B zc-fgkBX5bdRexG04$hD|nts7U2c#3|9K{Ivah|Tt=}k)<6iWI9^lej(G{+@gTfoC( zjtXl*at$Q94F~Bk61!Lz2l>P@;EM7S1%a70o~!%Z1w&uLJU64i?QEt<3MY<{{av_~ z`){n!mv9rK8bGL^>;F}<_mf!9#OZ-~*UO7S=}OD^)_a*PC5r07W{7Wur8(+)>c}>L zxJ#Q^WbF{w;?|5%$0>Y651JkLm$JV}>ofGcMo2<0nCG9tSS2)M1YKD0Mp~lxIP(HQ*35TU!zi@v5HIDDsmmbuYQ=efKafcy>%RkuH7AUx@hJn2 zx>Fcoa(ljLeB1@DjgNc#=fUDb2$g27J_opDfJV)TWEx z18+jW$$MR0+}5^)@@^2bHbpUo$B zxasomU}C*Lcv~9185^U{Pxnc~#3J(Ctol+#Ei;x#IK{b@NRG7M2r eFhrh_FB^Tu2D66=tr1h`dL01rF!mrh5GbS?euTwE4jlv$GciGhIu0Q=z^MgRZ+ literal 0 HcmV?d00001 diff --git a/.gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/projectfingerprint.bin b/.gradle/configuration-cache/1999e994-a8cc-4793-bd42-82805b0704d5/projectfingerprint.bin new file mode 100644 index 0000000000000000000000000000000000000000..1bf2e680e62dd3b83b398aa4b6b984af3d3a0132 GIT binary patch literal 434 zcmV;j0Zsm!yv;|q&CsZt(Q=AqiZc&il?P#8N^bzJ3g?C|VI4?cXJ z&`E@TFP8agR_ENT9cs|-0swmgOU83exB5p4$9e)tQ(;Ln>6Q=j7&9b^#cwo$HP-Ap zr!<9TKPfiJFAE~07u+;(2^JSKdC`U6&$OQn*a6;y!(NW{C~g-Xw=F1nU!lET2&Iig zSoBSr&g3?=iiL*N{FeIl^VPQ?C6<*-121qk#?(P1tL5zWwh_kigjnpok{}-^UiA8X zO3&=cHAQxky?_;MaUfHX+@GIa-x{m}G3x{9-;c%ohIi4!n8S~dsQ5czj`kD%V906= z*rC9PM+SpdSFzoWxhtiT$fdIOazjNzw&5WRnmlOr)BsInha|G1Kekji`tXLiXqcP| zHWf3Ft306reLG~x_6-;#tv1@-Zvs92yf0P(?beOJ!HW7pemvvH*i%Ej^Gh)y$PITm zTF$J3Y~0cEBMxV?8>stwTbjM=Wzt8R5G*;v-tcxhW*(tN3?Yt*r7XVt|K),ryZI5tfK_Ζ2)x&_9jUu*_.*%^4w5B=>5^Eӫ]=!~ǻOZDO$DU~@SV &I:7;qֆ,MW+Ƥhƈ5̋\ߙ ܒI/$+ɃRQOQˆi%oη] j"s|2|ÜQ3xtNiw;n.$v6Cf&B/s}4xmx>Z:gשxn3"@'S(2p\NbF \ No newline at end of file diff --git a/.gradle/configuration-cache/901izitdz0kkm37ehzk5k6hfa/candidates.bin b/.gradle/configuration-cache/901izitdz0kkm37ehzk5k6hfa/candidates.bin new file mode 100644 index 0000000..5f36e8f --- /dev/null +++ b/.gradle/configuration-cache/901izitdz0kkm37ehzk5k6hfa/candidates.bin @@ -0,0 +1 @@ +1999e994-a8cc-4793-bd42-82805b0704d \ No newline at end of file diff --git a/.gradle/configuration-cache/configuration-cache.lock b/.gradle/configuration-cache/configuration-cache.lock new file mode 100644 index 0000000000000000000000000000000000000000..a6906f6e7365190e63c90436e706040533eadb2b GIT binary patch literal 17 TcmZSn|0v?Xg@p~<8K3|FNE`*F literal 0 HcmV?d00001 diff --git a/.gradle/configuration-cache/gc.properties b/.gradle/configuration-cache/gc.properties new file mode 100644 index 0000000..e69de29 diff --git a/.gradle/file-system.probe b/.gradle/file-system.probe new file mode 100644 index 0000000000000000000000000000000000000000..e9ada584d0db19ed60c836bc2da7f63c55641454 GIT binary patch literal 8 PcmZQzV4U?qacTwt2*m=b literal 0 HcmV?d00001 diff --git a/.gradle/vcs-1/gc.properties b/.gradle/vcs-1/gc.properties new file mode 100644 index 0000000..e69de29 diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..ce1c62c --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..b167932 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..41281f0 --- /dev/null +++ b/build.gradle @@ -0,0 +1,42 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id 'java-library' + id 'maven-publish' +} + +repositories { + mavenLocal() + maven { + url = uri('https://repo.maven.apache.org/maven2/') + } +} + +dependencies { + testImplementation libs.org.junit.jupiter.junit.jupiter + testImplementation libs.net.datafaker.datafaker + compileOnly libs.org.projectlombok.lombok +} + +group = 'org.writer' +version = '1.0-SNAPSHOT' +description = 'csv' +java.sourceCompatibility = JavaVersion.VERSION_1_8 + +publishing { + publications { + maven(MavenPublication) { + from(components.java) + } + } +} + +tasks.withType(JavaCompile) { + options.encoding = 'UTF-8' +} + +tasks.withType(Javadoc) { + options.encoding = 'UTF-8' +} diff --git a/docs/apidocs/allclasses-index.html b/docs/apidocs/allclasses-index.html new file mode 100644 index 0000000..8229440 --- /dev/null +++ b/docs/apidocs/allclasses-index.html @@ -0,0 +1,102 @@ + + + + +All Classes and Interfaces (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + +

JavaScript is disabled on your browser.
+ +
+ +
+
+
+

All Classes and Interfaces

+
+
+
+
+
+
Class
+
Description
+ +
+
Аннотация CsvColumn используется для пометки полей класса, + которые должны быть включены в CSV‑отчёт.
+
+ +
 
+ +
 
+ +
+
Исключение NoDataCSVException выбрасывается в случаях, + когда отсутствуют данные для записи в CSV‑файл.
+
+ +
+
Класс Person представляет модель человека, + данные которого могут быть сериализованы в CSV‑файл.
+
+ +
+
Класс Student представляет модель студента, + данные которого могут быть сериализованы в CSV‑файл.
+
+ +
 
+ +
+
Реализация интерфейса Writable, которая позволяет сериализовать список объектов + в CSV‑файл с использованием аннотации CsvColumn.
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/allpackages-index.html b/docs/apidocs/allpackages-index.html new file mode 100644 index 0000000..2d70f22 --- /dev/null +++ b/docs/apidocs/allpackages-index.html @@ -0,0 +1,75 @@ + + + + +All Packages (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

All Packages

+
+
Package Summary
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/constant-values.html b/docs/apidocs/constant-values.html new file mode 100644 index 0000000..747911a --- /dev/null +++ b/docs/apidocs/constant-values.html @@ -0,0 +1,84 @@ + + + + +Constant Field Values (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Constant Field Values

+
+
+

Contents

+ +
+
+

org.writer.*

+
    +
  • +
    org.writer.exception.NoDataCSVException
    +
    +
    Modifier and Type
    +
    Constant Field
    +
    Value
    +
    public static final String
    + +
    "There is no data to write to CSV"
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/copy.svg b/docs/apidocs/copy.svg new file mode 100644 index 0000000..7c46ab1 --- /dev/null +++ b/docs/apidocs/copy.svg @@ -0,0 +1,33 @@ + + + + + + + + diff --git a/docs/apidocs/element-list b/docs/apidocs/element-list new file mode 100644 index 0000000..0f17595 --- /dev/null +++ b/docs/apidocs/element-list @@ -0,0 +1,4 @@ +org.writer +org.writer.annotation +org.writer.exception +org.writer.model diff --git a/docs/apidocs/help-doc.html b/docs/apidocs/help-doc.html new file mode 100644 index 0000000..8eb25e6 --- /dev/null +++ b/docs/apidocs/help-doc.html @@ -0,0 +1,203 @@ + + + + +API Help (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+

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. +
+

Overview

+

The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

+
+
+

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
  • +
  • Exception Classes
  • +
  • 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.
  • +
+
+
+

Constant Field Values

+

The Constant Field Values page lists the static final fields and their values.

+
+
+

Serialized Form

+

Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.

+
+
+

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/docs/apidocs/index-all.html b/docs/apidocs/index-all.html new file mode 100644 index 0000000..4366d9b --- /dev/null +++ b/docs/apidocs/index-all.html @@ -0,0 +1,195 @@ + + + + +Index (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A C D F J M N O P S V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

A

+
+
APRIL - Enum constant in enum class org.writer.model.Months
+
 
+
AUGUST - Enum constant in enum class org.writer.model.Months
+
 
+
+

C

+
+
CsvColumn - Annotation Interface in org.writer.annotation
+
+
Аннотация CsvColumn используется для пометки полей класса, + которые должны быть включены в CSV‑отчёт.
+
+
+

D

+
+
DECEMBER - Enum constant in enum class org.writer.model.Months
+
 
+
+

F

+
+
FEBRUARY - Enum constant in enum class org.writer.model.Months
+
 
+
+

J

+
+
JANUARY - Enum constant in enum class org.writer.model.Months
+
 
+
JULY - Enum constant in enum class org.writer.model.Months
+
 
+
JUNE - Enum constant in enum class org.writer.model.Months
+
 
+
+

M

+
+
main(String[]) - Static method in class org.writer.Main
+
 
+
Main - Class in org.writer
+
 
+
Main() - Constructor for class org.writer.Main
+
 
+
MARCH - Enum constant in enum class org.writer.model.Months
+
 
+
MAY - Enum constant in enum class org.writer.model.Months
+
 
+
Months - Enum Class in org.writer.model
+
 
+
MSG - Static variable in exception class org.writer.exception.NoDataCSVException
+
 
+
+

N

+
+
name() - Element in annotation interface org.writer.annotation.CsvColumn
+
+
Имя колонки в CSV‑файле, соответствующее данному полю.
+
+
NoDataCSVException - Exception Class in org.writer.exception
+
+
Исключение NoDataCSVException выбрасывается в случаях, + когда отсутствуют данные для записи в CSV‑файл.
+
+
NoDataCSVException() - Constructor for exception class org.writer.exception.NoDataCSVException
+
 
+
NOVEMBER - Enum constant in enum class org.writer.model.Months
+
 
+
+

O

+
+
OCTOBER - Enum constant in enum class org.writer.model.Months
+
 
+
org.writer - package org.writer
+
 
+
org.writer.annotation - package org.writer.annotation
+
 
+
org.writer.exception - package org.writer.exception
+
 
+
org.writer.model - package org.writer.model
+
 
+
+

P

+
+
Person - Class in org.writer.model
+
+
Класс Person представляет модель человека, + данные которого могут быть сериализованы в CSV‑файл.
+
+
Person() - Constructor for class org.writer.model.Person
+
 
+
+

S

+
+
SEPTEMBER - Enum constant in enum class org.writer.model.Months
+
 
+
Student - Class in org.writer.model
+
+
Класс Student представляет модель студента, + данные которого могут быть сериализованы в CSV‑файл.
+
+
Student() - Constructor for class org.writer.model.Student
+
 
+
+

V

+
+
valueOf(String) - Static method in enum class org.writer.model.Months
+
+
Returns the enum constant of this class with the specified name.
+
+
values() - Static method in enum class org.writer.model.Months
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
+

W

+
+
Writable - Interface in org.writer
+
 
+
WritableImpl - Class in org.writer
+
+
Реализация интерфейса Writable, которая позволяет сериализовать список объектов + в CSV‑файл с использованием аннотации CsvColumn.
+
+
WritableImpl() - Constructor for class org.writer.WritableImpl
+
 
+
writeToFile(List<?>, String) - Method in interface org.writer.Writable
+
 
+
writeToFile(List<?>, String) - Method in class org.writer.WritableImpl
+
+
Записывает список объектов в CSV‑файл.
+
+
+A C D F J M N O P S V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/index.html b/docs/apidocs/index.html new file mode 100644 index 0000000..d56fb89 --- /dev/null +++ b/docs/apidocs/index.html @@ -0,0 +1,77 @@ + + + + +Overview (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

csv 1.0-SNAPSHOT API

+
+
+
Packages
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/legal/ADDITIONAL_LICENSE_INFO b/docs/apidocs/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/docs/apidocs/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/docs/apidocs/legal/ASSEMBLY_EXCEPTION b/docs/apidocs/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..4296666 --- /dev/null +++ b/docs/apidocs/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.org ("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 + https://openjdk.org/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/docs/apidocs/legal/LICENSE b/docs/apidocs/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/docs/apidocs/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/docs/apidocs/legal/jquery.md b/docs/apidocs/legal/jquery.md new file mode 100644 index 0000000..d468b31 --- /dev/null +++ b/docs/apidocs/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +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.6.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/docs/apidocs/legal/jqueryUI.md b/docs/apidocs/legal/jqueryUI.md new file mode 100644 index 0000000..8bda9d7 --- /dev/null +++ b/docs/apidocs/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### 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/docs/apidocs/link.svg b/docs/apidocs/link.svg new file mode 100644 index 0000000..7ccc5ed --- /dev/null +++ b/docs/apidocs/link.svg @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/docs/apidocs/member-search-index.js b/docs/apidocs/member-search-index.js new file mode 100644 index 0000000..1de78e0 --- /dev/null +++ b/docs/apidocs/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"org.writer.model","c":"Months","l":"APRIL"},{"p":"org.writer.model","c":"Months","l":"AUGUST"},{"p":"org.writer.model","c":"Months","l":"DECEMBER"},{"p":"org.writer.model","c":"Months","l":"FEBRUARY"},{"p":"org.writer.model","c":"Months","l":"JANUARY"},{"p":"org.writer.model","c":"Months","l":"JULY"},{"p":"org.writer.model","c":"Months","l":"JUNE"},{"p":"org.writer","c":"Main","l":"Main()","u":"%3Cinit%3E()"},{"p":"org.writer","c":"Main","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"org.writer.model","c":"Months","l":"MARCH"},{"p":"org.writer.model","c":"Months","l":"MAY"},{"p":"org.writer.exception","c":"NoDataCSVException","l":"MSG"},{"p":"org.writer.annotation","c":"CsvColumn","l":"name()"},{"p":"org.writer.exception","c":"NoDataCSVException","l":"NoDataCSVException()","u":"%3Cinit%3E()"},{"p":"org.writer.model","c":"Months","l":"NOVEMBER"},{"p":"org.writer.model","c":"Months","l":"OCTOBER"},{"p":"org.writer.model","c":"Person","l":"Person()","u":"%3Cinit%3E()"},{"p":"org.writer.model","c":"Months","l":"SEPTEMBER"},{"p":"org.writer.model","c":"Student","l":"Student()","u":"%3Cinit%3E()"},{"p":"org.writer.model","c":"Months","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"org.writer.model","c":"Months","l":"values()"},{"p":"org.writer","c":"WritableImpl","l":"WritableImpl()","u":"%3Cinit%3E()"},{"p":"org.writer","c":"Writable","l":"writeToFile(List, String)","u":"writeToFile(java.util.List,java.lang.String)"},{"p":"org.writer","c":"WritableImpl","l":"writeToFile(List, String)","u":"writeToFile(java.util.List,java.lang.String)"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/module-search-index.js b/docs/apidocs/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/docs/apidocs/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/org/writer/Main.html b/docs/apidocs/org/writer/Main.html new file mode 100644 index 0000000..52fefbc --- /dev/null +++ b/docs/apidocs/org/writer/Main.html @@ -0,0 +1,182 @@ + + + + +Main (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package org.writer
+

Class Main

+
+
java.lang.Object +
org.writer.Main
+
+
+
+
public class Main +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Main

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

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/Writable.html b/docs/apidocs/org/writer/Writable.html new file mode 100644 index 0000000..580feb9 --- /dev/null +++ b/docs/apidocs/org/writer/Writable.html @@ -0,0 +1,154 @@ + + + + +Writable (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package org.writer
+

Interface Writable

+
+
+
+
All Known Implementing Classes:
+
WritableImpl
+
+
+
public interface Writable
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    writeToFile(List<?> data, + String fileName)
    +
     
    +
    +
    +
    +
    +
  • +
+
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/WritableImpl.html b/docs/apidocs/org/writer/WritableImpl.html new file mode 100644 index 0000000..ca9be09 --- /dev/null +++ b/docs/apidocs/org/writer/WritableImpl.html @@ -0,0 +1,212 @@ + + + + +WritableImpl (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package org.writer
+

Class WritableImpl

+
+
java.lang.Object +
org.writer.WritableImpl
+
+
+
+
All Implemented Interfaces:
+
Writable
+
+
+
public class WritableImpl +extends Object +implements Writable
+
Реализация интерфейса Writable, которая позволяет сериализовать список объектов + в CSV‑файл с использованием аннотации CsvColumn. +

+ Алгоритм работы: +

    +
  1. Проверяется, что список данных не пустой, иначе выбрасывается NoDataCSVException.
  2. +
  3. Через Reflection извлекаются все поля класса первого объекта.
  4. +
  5. Формируется строка заголовков CSV на основе значений CsvColumn.name().
  6. +
  7. Для каждого объекта формируется строка с его значениями.
  8. +
  9. Результат записывается в указанный файл.
  10. +
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      WritableImpl

      +
      public WritableImpl()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      writeToFile

      +
      public void writeToFile(List<?> data, + String fileName) + throws IOException
      +
      Записывает список объектов в CSV‑файл. +

      + Для сериализации учитываются только те поля, которые помечены аннотацией CsvColumn. + Если список пустой или равен null, выбрасывается NoDataCSVException.

      +
      +
      Specified by:
      +
      writeToFile in interface Writable
      +
      Parameters:
      +
      data - список объектов для записи
      +
      fileName - имя файла, в который будет записан результат
      +
      Throws:
      +
      IOException - если произошла ошибка при записи в файл
      +
      NoDataCSVException - если список data пустой или равен null
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/annotation/CsvColumn.html b/docs/apidocs/org/writer/annotation/CsvColumn.html new file mode 100644 index 0000000..48e81f0 --- /dev/null +++ b/docs/apidocs/org/writer/annotation/CsvColumn.html @@ -0,0 +1,149 @@ + + + + +CsvColumn (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Annotation Interface CsvColumn

+
+
+
+
@Retention(RUNTIME) +@Target(FIELD) +public @interface CsvColumn
+
Аннотация CsvColumn используется для пометки полей класса, + которые должны быть включены в CSV‑отчёт. +

+ Может применяться только к полям. Сохраняется во время выполнения, + что позволяет работать с ней через Reflection.

+
+
+
    + +
  • +
    +

    Required Element Summary

    +
    Required Elements
    +
    +
    Modifier and Type
    +
    Required Element
    +
    Description
    + + +
    +
    Имя колонки в CSV‑файле, соответствующее данному полю.
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Element Details

    +
      +
    • +
      +

      name

      +
      String name
      +
      Имя колонки в CSV‑файле, соответствующее данному полю.
      +
      +
      Returns:
      +
      название столбца в CSV
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/annotation/class-use/CsvColumn.html b/docs/apidocs/org/writer/annotation/class-use/CsvColumn.html new file mode 100644 index 0000000..34379fb --- /dev/null +++ b/docs/apidocs/org/writer/annotation/class-use/CsvColumn.html @@ -0,0 +1,62 @@ + + + + +Uses of Annotation Interface org.writer.annotation.CsvColumn (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Annotation Interface
org.writer.annotation.CsvColumn

+
+No usage of org.writer.annotation.CsvColumn
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/annotation/package-summary.html b/docs/apidocs/org/writer/annotation/package-summary.html new file mode 100644 index 0000000..ad4d3db --- /dev/null +++ b/docs/apidocs/org/writer/annotation/package-summary.html @@ -0,0 +1,114 @@ + + + + +org.writer.annotation (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.writer.annotation

+
+
+
package org.writer.annotation
+
+
    +
  • + +
  • +
  • +
    +
    Annotation Interfaces
    +
    +
    Class
    +
    Description
    + +
    +
    Аннотация CsvColumn используется для пометки полей класса, + которые должны быть включены в CSV‑отчёт.
    +
    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/annotation/package-tree.html b/docs/apidocs/org/writer/annotation/package-tree.html new file mode 100644 index 0000000..289f84a --- /dev/null +++ b/docs/apidocs/org/writer/annotation/package-tree.html @@ -0,0 +1,72 @@ + + + + +org.writer.annotation Class Hierarchy (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.writer.annotation

+
+Package Hierarchies: + +
+

Annotation Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/annotation/package-use.html b/docs/apidocs/org/writer/annotation/package-use.html new file mode 100644 index 0000000..5848d83 --- /dev/null +++ b/docs/apidocs/org/writer/annotation/package-use.html @@ -0,0 +1,62 @@ + + + + +Uses of Package org.writer.annotation (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.writer.annotation

+
+No usage of org.writer.annotation
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/class-use/Main.html b/docs/apidocs/org/writer/class-use/Main.html new file mode 100644 index 0000000..696e532 --- /dev/null +++ b/docs/apidocs/org/writer/class-use/Main.html @@ -0,0 +1,62 @@ + + + + +Uses of Class org.writer.Main (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.writer.Main

+
+No usage of org.writer.Main
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/class-use/Writable.html b/docs/apidocs/org/writer/class-use/Writable.html new file mode 100644 index 0000000..57035a2 --- /dev/null +++ b/docs/apidocs/org/writer/class-use/Writable.html @@ -0,0 +1,90 @@ + + + + +Uses of Interface org.writer.Writable (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.writer.Writable

+
+
Packages that use Writable
+
+
Package
+
Description
+ +
 
+
+
+
    +
  • +
    +

    Uses of Writable in org.writer

    +
    Classes in org.writer that implement Writable
    +
    +
    Modifier and Type
    +
    Class
    +
    Description
    +
    class 
    + +
    +
    Реализация интерфейса Writable, которая позволяет сериализовать список объектов + в CSV‑файл с использованием аннотации CsvColumn.
    +
    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/class-use/WritableImpl.html b/docs/apidocs/org/writer/class-use/WritableImpl.html new file mode 100644 index 0000000..12a34d4 --- /dev/null +++ b/docs/apidocs/org/writer/class-use/WritableImpl.html @@ -0,0 +1,62 @@ + + + + +Uses of Class org.writer.WritableImpl (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.writer.WritableImpl

+
+No usage of org.writer.WritableImpl
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/exception/NoDataCSVException.html b/docs/apidocs/org/writer/exception/NoDataCSVException.html new file mode 100644 index 0000000..f49d87a --- /dev/null +++ b/docs/apidocs/org/writer/exception/NoDataCSVException.html @@ -0,0 +1,210 @@ + + + + +NoDataCSVException (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class NoDataCSVException

+
+
java.lang.Object +
java.lang.Throwable +
java.lang.Exception +
java.lang.RuntimeException +
org.writer.exception.NoDataCSVException
+
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class NoDataCSVException +extends RuntimeException
+
Исключение NoDataCSVException выбрасывается в случаях, + когда отсутствуют данные для записи в CSV‑файл.
+
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      NoDataCSVException

      +
      public NoDataCSVException()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/exception/class-use/NoDataCSVException.html b/docs/apidocs/org/writer/exception/class-use/NoDataCSVException.html new file mode 100644 index 0000000..ee8e450 --- /dev/null +++ b/docs/apidocs/org/writer/exception/class-use/NoDataCSVException.html @@ -0,0 +1,62 @@ + + + + +Uses of Class org.writer.exception.NoDataCSVException (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.writer.exception.NoDataCSVException

+
+No usage of org.writer.exception.NoDataCSVException
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/exception/package-summary.html b/docs/apidocs/org/writer/exception/package-summary.html new file mode 100644 index 0000000..f376a97 --- /dev/null +++ b/docs/apidocs/org/writer/exception/package-summary.html @@ -0,0 +1,114 @@ + + + + +org.writer.exception (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.writer.exception

+
+
+
package org.writer.exception
+
+
    +
  • + +
  • +
  • +
    +
    Exception Classes
    +
    +
    Class
    +
    Description
    + +
    +
    Исключение NoDataCSVException выбрасывается в случаях, + когда отсутствуют данные для записи в CSV‑файл.
    +
    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/exception/package-tree.html b/docs/apidocs/org/writer/exception/package-tree.html new file mode 100644 index 0000000..5851098 --- /dev/null +++ b/docs/apidocs/org/writer/exception/package-tree.html @@ -0,0 +1,88 @@ + + + + +org.writer.exception Class Hierarchy (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.writer.exception

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/exception/package-use.html b/docs/apidocs/org/writer/exception/package-use.html new file mode 100644 index 0000000..6bbaff5 --- /dev/null +++ b/docs/apidocs/org/writer/exception/package-use.html @@ -0,0 +1,62 @@ + + + + +Uses of Package org.writer.exception (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.writer.exception

+
+No usage of org.writer.exception
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/model/Months.html b/docs/apidocs/org/writer/model/Months.html new file mode 100644 index 0000000..7333a70 --- /dev/null +++ b/docs/apidocs/org/writer/model/Months.html @@ -0,0 +1,316 @@ + + + + +Months (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class Months

+
+
java.lang.Object +
java.lang.Enum<Months> +
org.writer.model.Months
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<Months>, Constable
+
+
+
public enum Months +extends Enum<Months>
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    +
      +
    • +
      +

      JANUARY

      +
      public static final Months JANUARY
      +
      +
    • +
    • +
      +

      FEBRUARY

      +
      public static final Months FEBRUARY
      +
      +
    • +
    • +
      +

      MARCH

      +
      public static final Months MARCH
      +
      +
    • +
    • +
      +

      APRIL

      +
      public static final Months APRIL
      +
      +
    • +
    • +
      +

      MAY

      +
      public static final Months MAY
      +
      +
    • +
    • +
      +

      JUNE

      +
      public static final Months JUNE
      +
      +
    • +
    • +
      +

      JULY

      +
      public static final Months JULY
      +
      +
    • +
    • +
      +

      AUGUST

      +
      public static final Months AUGUST
      +
      +
    • +
    • +
      +

      SEPTEMBER

      +
      public static final Months SEPTEMBER
      +
      +
    • +
    • +
      +

      OCTOBER

      +
      public static final Months OCTOBER
      +
      +
    • +
    • +
      +

      NOVEMBER

      +
      public static final Months NOVEMBER
      +
      +
    • +
    • +
      +

      DECEMBER

      +
      public static final Months DECEMBER
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static Months[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static Months valueOf(String name)
      +
      Returns the enum constant of this class with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this class. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/model/Person.html b/docs/apidocs/org/writer/model/Person.html new file mode 100644 index 0000000..72f1e70 --- /dev/null +++ b/docs/apidocs/org/writer/model/Person.html @@ -0,0 +1,155 @@ + + + + +Person (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Person

+
+
java.lang.Object +
org.writer.model.Person
+
+
+
+
public class Person +extends Object
+
Класс Person представляет модель человека, + данные которого могут быть сериализованы в CSV‑файл. +

+ Для каждого поля используется аннотация CsvColumn, + которая определяет название соответствующей колонки в CSV‑отчёте.

+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Person

      +
      public Person()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/model/Student.html b/docs/apidocs/org/writer/model/Student.html new file mode 100644 index 0000000..354124d --- /dev/null +++ b/docs/apidocs/org/writer/model/Student.html @@ -0,0 +1,155 @@ + + + + +Student (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Student

+
+
java.lang.Object +
org.writer.model.Student
+
+
+
+
public class Student +extends Object
+
Класс Student представляет модель студента, + данные которого могут быть сериализованы в CSV‑файл. +

+ Для каждого поля используется аннотация CsvColumn, + которая определяет название соответствующей колонки в CSV‑отчёте.

+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Student

      +
      public Student()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/model/class-use/Months.html b/docs/apidocs/org/writer/model/class-use/Months.html new file mode 100644 index 0000000..6737df1 --- /dev/null +++ b/docs/apidocs/org/writer/model/class-use/Months.html @@ -0,0 +1,95 @@ + + + + +Uses of Enum Class org.writer.model.Months (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
org.writer.model.Months

+
+
Packages that use Months
+
+
Package
+
Description
+ +
 
+
+
+
    +
  • +
    +

    Uses of Months in org.writer.model

    +
    Methods in org.writer.model that return Months
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    static Months
    +
    Months.valueOf(String name)
    +
    +
    Returns the enum constant of this class with the specified name.
    +
    +
    static Months[]
    +
    Months.values()
    +
    +
    Returns an array containing the constants of this enum class, in +the order they are declared.
    +
    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/model/class-use/Person.html b/docs/apidocs/org/writer/model/class-use/Person.html new file mode 100644 index 0000000..ca88dbf --- /dev/null +++ b/docs/apidocs/org/writer/model/class-use/Person.html @@ -0,0 +1,62 @@ + + + + +Uses of Class org.writer.model.Person (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.writer.model.Person

+
+No usage of org.writer.model.Person
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/model/class-use/Student.html b/docs/apidocs/org/writer/model/class-use/Student.html new file mode 100644 index 0000000..02ae0af --- /dev/null +++ b/docs/apidocs/org/writer/model/class-use/Student.html @@ -0,0 +1,62 @@ + + + + +Uses of Class org.writer.model.Student (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.writer.model.Student

+
+No usage of org.writer.model.Student
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/model/package-summary.html b/docs/apidocs/org/writer/model/package-summary.html new file mode 100644 index 0000000..246772f --- /dev/null +++ b/docs/apidocs/org/writer/model/package-summary.html @@ -0,0 +1,123 @@ + + + + +org.writer.model (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.writer.model

+
+
+
package org.writer.model
+
+
    +
  • + +
  • +
  • +
    +
    +
    +
    +
    Class
    +
    Description
    + +
     
    + +
    +
    Класс Person представляет модель человека, + данные которого могут быть сериализованы в CSV‑файл.
    +
    + +
    +
    Класс Student представляет модель студента, + данные которого могут быть сериализованы в CSV‑файл.
    +
    +
    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/model/package-tree.html b/docs/apidocs/org/writer/model/package-tree.html new file mode 100644 index 0000000..bb6e247 --- /dev/null +++ b/docs/apidocs/org/writer/model/package-tree.html @@ -0,0 +1,91 @@ + + + + +org.writer.model Class Hierarchy (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.writer.model

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/model/package-use.html b/docs/apidocs/org/writer/model/package-use.html new file mode 100644 index 0000000..3be7ced --- /dev/null +++ b/docs/apidocs/org/writer/model/package-use.html @@ -0,0 +1,84 @@ + + + + +Uses of Package org.writer.model (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.writer.model

+
+
Packages that use org.writer.model
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/package-summary.html b/docs/apidocs/org/writer/package-summary.html new file mode 100644 index 0000000..3644b7a --- /dev/null +++ b/docs/apidocs/org/writer/package-summary.html @@ -0,0 +1,120 @@ + + + + +org.writer (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.writer

+
+
+
package org.writer
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/package-tree.html b/docs/apidocs/org/writer/package-tree.html new file mode 100644 index 0000000..fe3c8cc --- /dev/null +++ b/docs/apidocs/org/writer/package-tree.html @@ -0,0 +1,83 @@ + + + + +org.writer Class Hierarchy (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.writer

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/org/writer/package-use.html b/docs/apidocs/org/writer/package-use.html new file mode 100644 index 0000000..0b7c33c --- /dev/null +++ b/docs/apidocs/org/writer/package-use.html @@ -0,0 +1,84 @@ + + + + +Uses of Package org.writer (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.writer

+
+
Packages that use org.writer
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/overview-summary.html b/docs/apidocs/overview-summary.html new file mode 100644 index 0000000..b15850b --- /dev/null +++ b/docs/apidocs/overview-summary.html @@ -0,0 +1,26 @@ + + + + +csv 1.0-SNAPSHOT API + + + + + + + + + + + +
+ +

index.html

+
+ + diff --git a/docs/apidocs/overview-tree.html b/docs/apidocs/overview-tree.html new file mode 100644 index 0000000..f1b5a86 --- /dev/null +++ b/docs/apidocs/overview-tree.html @@ -0,0 +1,121 @@ + + + + +Class Hierarchy (csv 1.0-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For All Packages

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Annotation Interface Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/package-search-index.js b/docs/apidocs/package-search-index.js new file mode 100644 index 0000000..e4fa473 --- /dev/null +++ b/docs/apidocs/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"org.writer"},{"l":"org.writer.annotation"},{"l":"org.writer.exception"},{"l":"org.writer.model"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/resources/glass.png b/docs/apidocs/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/docs/apidocs/script-dir/jquery-3.6.1.min.js b/docs/apidocs/script-dir/jquery-3.6.1.min.js new file mode 100644 index 0000000..2c69bc9 --- /dev/null +++ b/docs/apidocs/script-dir/jquery-3.6.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.1 | (c) OpenJS 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,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},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.6.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))&&v(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+" "]&&(!y||!y.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)&&ve(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(B,"$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 ye(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 ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(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=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.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&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.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)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=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},j=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&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(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))&&(!y||!y.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 j(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||D,"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,D=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),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ye(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 ve(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 je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(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"}),v.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||(v.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):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 B(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(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.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 B(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 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",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.lastMousePosition={x:null,y:null},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(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.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":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").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(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.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 t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(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",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",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,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("