This is an automated email from the ASF dual-hosted git repository. rec pushed a commit to branch refactoring/122-Resolve-split-package-between-ruta-core-and-ruta-core-ext in repository https://gitbox.apache.org/repos/asf/uima-ruta.git
commit 66b7bcf74230e8b3526e0b0a3ede2dd397b8ac23 Author: Richard Eckart de Castilho <[email protected]> AuthorDate: Mon Feb 13 10:57:12 2023 +0100 Issue #122: Resolve split package between ruta-core and ruta-core-ext - Move contents of packages ruta.action, ruta.block and ruta.type from ruta-core-ext to ruta-core along with related tests - Turn ruta-core-ext into an OSGI bundle - Update script that installs Eclipse formatting rules into the modules - Remove duplicate javadoc plugin delcaration --- installEclipseSettings.sh | 6 +- ruta-core-ext/.gitignore | 3 + ruta-core-ext/marker-file-identifying-osgi-bundle | 0 ruta-core-ext/pom.xml | 12 +- ruta-core/pom.xml | 10 - .../uima/ruta/action/MarkFastReloadAction.java | 0 .../uima/ruta/action/MarkReloadExtension.java | 0 .../uima/ruta/action/MarkTableReloadAction.java | 0 .../org/apache/uima/ruta/block/DocumentBlock.java | 0 .../uima/ruta/block/DocumentBlockExtension.java | 0 .../org/apache/uima/ruta/block/OnlyFirstBlock.java | 0 .../uima/ruta/block/OnlyFirstBlockExtension.java | 0 .../org/apache/uima/ruta/block/OnlyOnceBlock.java | 0 .../uima/ruta/block/OnlyOnceBlockExtension.java | 0 .../uima/ruta/type/TypeFromStringFunction.java | 0 .../ruta/type/TypeFromStringFunctionExtension.java | 0 .../uima/ruta/action/MarkFastReloadTest.ruta | 0 .../apache/uima/ruta/action/MarkFastReloadTest.txt | 0 .../apache/uima/ruta/action/MarkFastTestList.txt | 0 .../uima/ruta/action/MarkTableReloadTest.ruta | 0 .../uima/ruta/action/MarkTableReloadTest.txt | 0 .../org/apache/uima/ruta/action/table.csv | 0 .../uima/ruta/action/MarkFastReloadTest.java | 0 .../uima/ruta/action/MarkTableReloadTest.java | 47 ++- .../apache/uima/ruta/block/DocumentBlockTest.java | 0 .../apache/uima/ruta/block/OnlyFirstBlockTest.java | 0 .../apache/uima/ruta/block/OnlyOnceBlockTest.java | 0 .../uima/ruta/type/TypeFromStringFunctionTest.java | 0 ruta-eclipse-feature/.gitignore | 2 + src/main/eclipse/org.eclipse.jdt.core.prefs | 407 +++++++++++++++++++++ src/main/eclipse/org.eclipse.jdt.ui.prefs | 121 ++++++ 31 files changed, 564 insertions(+), 44 deletions(-) diff --git a/installEclipseSettings.sh b/installEclipseSettings.sh index 68ffe32b..b41ac8c2 100755 --- a/installEclipseSettings.sh +++ b/installEclipseSettings.sh @@ -17,10 +17,10 @@ # under the License. # Formatter settings -JDT_CORE_PREFS="/Users/rec/uima-code-style-settings/org.eclipse.jdt.core.prefs" +JDT_CORE_PREFS="src/main/eclipse/org.eclipse.jdt.core.prefs" # Save actions -JDT_UI_PREFS="/Users/rec/uima-code-style-settings/org.eclipse.jdt.ui.prefs" +JDT_UI_PREFS="src/main/eclipse/org.eclipse.jdt.ui.prefs" function installPrefs { mkdir -p $1/.settings/ @@ -29,7 +29,6 @@ function installPrefs { } installPrefs example-projects -installPrefs ruta-basic-type installPrefs ruta-core installPrefs ruta-core-ext installPrefs ruta-docbook @@ -46,4 +45,3 @@ installPrefs ruta-ep-textruler installPrefs ruta-maven-archetype installPrefs ruta-maven-plugin installPrefs ruta-parent -installPrefs ruta-typesystem diff --git a/ruta-core-ext/.gitignore b/ruta-core-ext/.gitignore new file mode 100644 index 00000000..a7756f7d --- /dev/null +++ b/ruta-core-ext/.gitignore @@ -0,0 +1,3 @@ +/META-INF/ +/.apt_generated/ +/.apt_generated_tests/ diff --git a/ruta-core-ext/marker-file-identifying-osgi-bundle b/ruta-core-ext/marker-file-identifying-osgi-bundle new file mode 100644 index 00000000..e69de29b diff --git a/ruta-core-ext/pom.xml b/ruta-core-ext/pom.xml index 2b7a79a0..774fc18d 100644 --- a/ruta-core-ext/pom.xml +++ b/ruta-core-ext/pom.xml @@ -19,11 +19,6 @@ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <artifactId>ruta-core-ext</artifactId> - - <name>Apache UIMA Ruta: ${project.artifactId}</name> - <url>${uimaWebsiteUrl}</url> - <description>Additional extensions of the UIMA Ruta language</description> <parent> <groupId>org.apache.uima</groupId> @@ -32,6 +27,13 @@ <relativePath>../ruta-parent/pom.xml</relativePath> </parent> + <artifactId>ruta-core-ext</artifactId> + <packaging>bundle</packaging> + + <name>Apache UIMA Ruta: ${project.artifactId}</name> + <url>${uimaWebsiteUrl}</url> + <description>Additional extensions of the UIMA Ruta language</description> + <properties> <uimaScmProject>${project.artifactId}</uimaScmProject> <postNoticeText /> diff --git a/ruta-core/pom.xml b/ruta-core/pom.xml index 7edee7ff..e270a9d6 100644 --- a/ruta-core/pom.xml +++ b/ruta-core/pom.xml @@ -368,16 +368,6 @@ <argLine>-Xmx650M</argLine> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <!-- Exclude generated jcas classes --> - <sourceFileExcludes> - <sourceFileExclude>**/org/apache/uima/ruta/type/*.java</sourceFileExclude> - </sourceFileExcludes> - </configuration> - </plugin> </plugins> </build> </project> \ No newline at end of file diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/action/MarkFastReloadAction.java b/ruta-core/src/main/java/org/apache/uima/ruta/action/MarkFastReloadAction.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/action/MarkFastReloadAction.java rename to ruta-core/src/main/java/org/apache/uima/ruta/action/MarkFastReloadAction.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/action/MarkReloadExtension.java b/ruta-core/src/main/java/org/apache/uima/ruta/action/MarkReloadExtension.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/action/MarkReloadExtension.java rename to ruta-core/src/main/java/org/apache/uima/ruta/action/MarkReloadExtension.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/action/MarkTableReloadAction.java b/ruta-core/src/main/java/org/apache/uima/ruta/action/MarkTableReloadAction.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/action/MarkTableReloadAction.java rename to ruta-core/src/main/java/org/apache/uima/ruta/action/MarkTableReloadAction.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlock.java b/ruta-core/src/main/java/org/apache/uima/ruta/block/DocumentBlock.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlock.java rename to ruta-core/src/main/java/org/apache/uima/ruta/block/DocumentBlock.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlockExtension.java b/ruta-core/src/main/java/org/apache/uima/ruta/block/DocumentBlockExtension.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlockExtension.java rename to ruta-core/src/main/java/org/apache/uima/ruta/block/DocumentBlockExtension.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/block/OnlyFirstBlock.java b/ruta-core/src/main/java/org/apache/uima/ruta/block/OnlyFirstBlock.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/block/OnlyFirstBlock.java rename to ruta-core/src/main/java/org/apache/uima/ruta/block/OnlyFirstBlock.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/block/OnlyFirstBlockExtension.java b/ruta-core/src/main/java/org/apache/uima/ruta/block/OnlyFirstBlockExtension.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/block/OnlyFirstBlockExtension.java rename to ruta-core/src/main/java/org/apache/uima/ruta/block/OnlyFirstBlockExtension.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/block/OnlyOnceBlock.java b/ruta-core/src/main/java/org/apache/uima/ruta/block/OnlyOnceBlock.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/block/OnlyOnceBlock.java rename to ruta-core/src/main/java/org/apache/uima/ruta/block/OnlyOnceBlock.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/block/OnlyOnceBlockExtension.java b/ruta-core/src/main/java/org/apache/uima/ruta/block/OnlyOnceBlockExtension.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/block/OnlyOnceBlockExtension.java rename to ruta-core/src/main/java/org/apache/uima/ruta/block/OnlyOnceBlockExtension.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/type/TypeFromStringFunction.java b/ruta-core/src/main/java/org/apache/uima/ruta/type/TypeFromStringFunction.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/type/TypeFromStringFunction.java rename to ruta-core/src/main/java/org/apache/uima/ruta/type/TypeFromStringFunction.java diff --git a/ruta-core-ext/src/main/java/org/apache/uima/ruta/type/TypeFromStringFunctionExtension.java b/ruta-core/src/main/java/org/apache/uima/ruta/type/TypeFromStringFunctionExtension.java similarity index 100% rename from ruta-core-ext/src/main/java/org/apache/uima/ruta/type/TypeFromStringFunctionExtension.java rename to ruta-core/src/main/java/org/apache/uima/ruta/type/TypeFromStringFunctionExtension.java diff --git a/ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkFastReloadTest.ruta b/ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkFastReloadTest.ruta similarity index 100% rename from ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkFastReloadTest.ruta rename to ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkFastReloadTest.ruta diff --git a/ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkFastReloadTest.txt b/ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkFastReloadTest.txt similarity index 100% rename from ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkFastReloadTest.txt rename to ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkFastReloadTest.txt diff --git a/ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkFastTestList.txt b/ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkFastTestList.txt similarity index 100% rename from ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkFastTestList.txt rename to ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkFastTestList.txt diff --git a/ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkTableReloadTest.ruta b/ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkTableReloadTest.ruta similarity index 100% rename from ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkTableReloadTest.ruta rename to ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkTableReloadTest.ruta diff --git a/ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkTableReloadTest.txt b/ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkTableReloadTest.txt similarity index 100% rename from ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/MarkTableReloadTest.txt rename to ruta-core/src/main/resources/org/apache/uima/ruta/action/MarkTableReloadTest.txt diff --git a/ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/table.csv b/ruta-core/src/main/resources/org/apache/uima/ruta/action/table.csv similarity index 100% rename from ruta-core-ext/src/test/resources/org/apache/uima/ruta/action/table.csv rename to ruta-core/src/main/resources/org/apache/uima/ruta/action/table.csv diff --git a/ruta-core-ext/src/test/java/org/apache/uima/ruta/action/MarkFastReloadTest.java b/ruta-core/src/test/java/org/apache/uima/ruta/action/MarkFastReloadTest.java similarity index 100% rename from ruta-core-ext/src/test/java/org/apache/uima/ruta/action/MarkFastReloadTest.java rename to ruta-core/src/test/java/org/apache/uima/ruta/action/MarkFastReloadTest.java diff --git a/ruta-core-ext/src/test/java/org/apache/uima/ruta/action/MarkTableReloadTest.java b/ruta-core/src/test/java/org/apache/uima/ruta/action/MarkTableReloadTest.java similarity index 81% rename from ruta-core-ext/src/test/java/org/apache/uima/ruta/action/MarkTableReloadTest.java rename to ruta-core/src/test/java/org/apache/uima/ruta/action/MarkTableReloadTest.java index 9512478a..1ee7b9f2 100644 --- a/ruta-core-ext/src/test/java/org/apache/uima/ruta/action/MarkTableReloadTest.java +++ b/ruta-core/src/test/java/org/apache/uima/ruta/action/MarkTableReloadTest.java @@ -42,14 +42,14 @@ import org.junit.Test; public class MarkTableReloadTest { @Test - public void test() { + public void test() throws Exception { String name = this.getClass().getSimpleName(); String namespace = this.getClass().getPackage().getName().replaceAll("\\.", "/"); Map<String, String> complexTypes = new TreeMap<String, String>(); String typeName = "org.apache.uima.Person"; complexTypes.put(typeName, "uima.tcas.Annotation"); - + Map<String, List<TestFeature>> features = new TreeMap<String, List<TestFeature>>(); List<TestFeature> list = new ArrayList<RutaTestUtils.TestFeature>(); features.put(typeName, list); @@ -57,19 +57,16 @@ public class MarkTableReloadTest { list.add(new TestFeature(fn1, "", "uima.cas.String")); String fn2 = "system"; list.add(new TestFeature(fn2, "", "uima.cas.String")); - - CAS cas = null; - try { - String ruleFileName = namespace + "/" + name + RutaEngine.SCRIPT_FILE_EXTENSION; - String textFileName = namespace + "/" + name + ".txt"; - Map<String, Object> parameters = new HashMap<>(); - parameters.put(RutaEngine.PARAM_ADDITIONAL_EXTENSIONS, new String[] {MarkReloadExtension.class.getName()}); - parameters.put(RutaEngine.PARAM_SEEDERS, new String[] {DefaultSeeder.class.getName()}); - cas = RutaTestUtils.process(ruleFileName, textFileName, parameters, 50, complexTypes, features, namespace + "/", null); - } catch (Exception e) { - e.printStackTrace(); - assert (false); - } + + String ruleFileName = namespace + "/" + name + RutaEngine.SCRIPT_FILE_EXTENSION; + String textFileName = namespace + "/" + name + ".txt"; + Map<String, Object> parameters = new HashMap<>(); + parameters.put(RutaEngine.PARAM_ADDITIONAL_EXTENSIONS, + new String[] { MarkReloadExtension.class.getName() }); + parameters.put(RutaEngine.PARAM_SEEDERS, new String[] { DefaultSeeder.class.getName() }); + CAS cas = RutaTestUtils.process(ruleFileName, textFileName, parameters, 50, complexTypes, + features, namespace + "/", null); + Type t = null; AnnotationIndex<AnnotationFS> ai = null; FSIterator<AnnotationFS> iterator = null; @@ -80,46 +77,46 @@ public class MarkTableReloadTest { Feature f1 = t.getFeatureByBaseName(fn1); Feature f2 = t.getFeatureByBaseName(fn2); ai = cas.getAnnotationIndex(t); - + assertEquals(6, ai.size()); iterator = ai.iterator(); - + next = iterator.next(); v1 = next.getStringValue(f1); v2 = next.getStringValue(f2); assertEquals("Peter", v1); assertEquals("Ruta", v2); - + next = iterator.next(); v1 = next.getStringValue(f1); v2 = next.getStringValue(f2); assertEquals("Marshall", v1); assertEquals("UIMA", v2); - + next = iterator.next(); v1 = next.getStringValue(f1); v2 = next.getStringValue(f2); assertEquals("Joern", v1); assertEquals("CAS Editor", v2); - + next = iterator.next(); v1 = next.getStringValue(f1); v2 = next.getStringValue(f2); assertEquals("Peter", v1); assertEquals("Ruta", v2); - + next = iterator.next(); v1 = next.getStringValue(f1); v2 = next.getStringValue(f2); assertEquals("Marshall", v1); assertEquals("UIMA", v2); - + next = iterator.next(); v1 = next.getStringValue(f1); v2 = next.getStringValue(f2); assertEquals("Joern", v1); - assertEquals("CAS Editor", v2); - - cas.release(); + assertEquals("CAS Editor", v2); + + cas.release(); } } diff --git a/ruta-core-ext/src/test/java/org/apache/uima/ruta/block/DocumentBlockTest.java b/ruta-core/src/test/java/org/apache/uima/ruta/block/DocumentBlockTest.java similarity index 100% rename from ruta-core-ext/src/test/java/org/apache/uima/ruta/block/DocumentBlockTest.java rename to ruta-core/src/test/java/org/apache/uima/ruta/block/DocumentBlockTest.java diff --git a/ruta-core-ext/src/test/java/org/apache/uima/ruta/block/OnlyFirstBlockTest.java b/ruta-core/src/test/java/org/apache/uima/ruta/block/OnlyFirstBlockTest.java similarity index 100% rename from ruta-core-ext/src/test/java/org/apache/uima/ruta/block/OnlyFirstBlockTest.java rename to ruta-core/src/test/java/org/apache/uima/ruta/block/OnlyFirstBlockTest.java diff --git a/ruta-core-ext/src/test/java/org/apache/uima/ruta/block/OnlyOnceBlockTest.java b/ruta-core/src/test/java/org/apache/uima/ruta/block/OnlyOnceBlockTest.java similarity index 100% rename from ruta-core-ext/src/test/java/org/apache/uima/ruta/block/OnlyOnceBlockTest.java rename to ruta-core/src/test/java/org/apache/uima/ruta/block/OnlyOnceBlockTest.java diff --git a/ruta-core-ext/src/test/java/org/apache/uima/ruta/type/TypeFromStringFunctionTest.java b/ruta-core/src/test/java/org/apache/uima/ruta/type/TypeFromStringFunctionTest.java similarity index 100% rename from ruta-core-ext/src/test/java/org/apache/uima/ruta/type/TypeFromStringFunctionTest.java rename to ruta-core/src/test/java/org/apache/uima/ruta/type/TypeFromStringFunctionTest.java diff --git a/ruta-eclipse-feature/.gitignore b/ruta-eclipse-feature/.gitignore new file mode 100644 index 00000000..00d2ab71 --- /dev/null +++ b/ruta-eclipse-feature/.gitignore @@ -0,0 +1,2 @@ +/.apt_generated/ +/.apt_generated_tests/ diff --git a/src/main/eclipse/org.eclipse.jdt.core.prefs b/src/main/eclipse/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000..d92babda --- /dev/null +++ b/src/main/eclipse/org.eclipse.jdt.core.prefs @@ -0,0 +1,407 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore +org.eclipse.jdt.core.compiler.processAnnotations=enabled +org.eclipse.jdt.core.compiler.release=disabled +org.eclipse.jdt.core.compiler.source=1.8 +org.eclipse.jdt.core.formatter.align_assignment_statements_on_columns=false +org.eclipse.jdt.core.formatter.align_fields_grouping_blank_lines=2147483647 +org.eclipse.jdt.core.formatter.align_selector_in_method_invocation_on_expression_first_line=false +org.eclipse.jdt.core.formatter.align_type_members_on_columns=false +org.eclipse.jdt.core.formatter.align_variable_declarations_on_columns=false +org.eclipse.jdt.core.formatter.align_with_spaces=false +org.eclipse.jdt.core.formatter.alignment_for_additive_operator=16 +org.eclipse.jdt.core.formatter.alignment_for_annotations_on_enum_constant=49 +org.eclipse.jdt.core.formatter.alignment_for_annotations_on_field=49 +org.eclipse.jdt.core.formatter.alignment_for_annotations_on_local_variable=49 +org.eclipse.jdt.core.formatter.alignment_for_annotations_on_method=49 +org.eclipse.jdt.core.formatter.alignment_for_annotations_on_package=49 +org.eclipse.jdt.core.formatter.alignment_for_annotations_on_parameter=49 +org.eclipse.jdt.core.formatter.alignment_for_annotations_on_type=49 +org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16 +org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0 +org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16 +org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16 +org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16 +org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16 +org.eclipse.jdt.core.formatter.alignment_for_assertion_message=0 +org.eclipse.jdt.core.formatter.alignment_for_assignment=0 +org.eclipse.jdt.core.formatter.alignment_for_bitwise_operator=16 +org.eclipse.jdt.core.formatter.alignment_for_compact_if=16 +org.eclipse.jdt.core.formatter.alignment_for_compact_loops=16 +org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80 +org.eclipse.jdt.core.formatter.alignment_for_conditional_expression_chain=0 +org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0 +org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16 +org.eclipse.jdt.core.formatter.alignment_for_expressions_in_for_loop_header=0 +org.eclipse.jdt.core.formatter.alignment_for_expressions_in_switch_case_with_arrow=0 +org.eclipse.jdt.core.formatter.alignment_for_expressions_in_switch_case_with_colon=0 +org.eclipse.jdt.core.formatter.alignment_for_logical_operator=16 +org.eclipse.jdt.core.formatter.alignment_for_method_declaration=0 +org.eclipse.jdt.core.formatter.alignment_for_module_statements=16 +org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16 +org.eclipse.jdt.core.formatter.alignment_for_multiplicative_operator=16 +org.eclipse.jdt.core.formatter.alignment_for_parameterized_type_references=0 +org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16 +org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16 +org.eclipse.jdt.core.formatter.alignment_for_record_components=16 +org.eclipse.jdt.core.formatter.alignment_for_relational_operator=0 +org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80 +org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16 +org.eclipse.jdt.core.formatter.alignment_for_shift_operator=0 +org.eclipse.jdt.core.formatter.alignment_for_string_concatenation=16 +org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16 +org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16 +org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_record_declaration=16 +org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16 +org.eclipse.jdt.core.formatter.alignment_for_switch_case_with_arrow=0 +org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16 +org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16 +org.eclipse.jdt.core.formatter.alignment_for_type_annotations=0 +org.eclipse.jdt.core.formatter.alignment_for_type_arguments=0 +org.eclipse.jdt.core.formatter.alignment_for_type_parameters=0 +org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch=16 +org.eclipse.jdt.core.formatter.blank_lines_after_imports=1 +org.eclipse.jdt.core.formatter.blank_lines_after_last_class_body_declaration=0 +org.eclipse.jdt.core.formatter.blank_lines_after_package=1 +org.eclipse.jdt.core.formatter.blank_lines_before_abstract_method=1 +org.eclipse.jdt.core.formatter.blank_lines_before_field=0 +org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0 +org.eclipse.jdt.core.formatter.blank_lines_before_imports=1 +org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1 +org.eclipse.jdt.core.formatter.blank_lines_before_method=1 +org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1 +org.eclipse.jdt.core.formatter.blank_lines_before_package=0 +org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1 +org.eclipse.jdt.core.formatter.blank_lines_between_statement_group_in_switch=0 +org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1 +org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_lambda_body=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_record_constructor=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_record_declaration=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line +org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line +org.eclipse.jdt.core.formatter.comment.align_tags_descriptions_grouped=false +org.eclipse.jdt.core.formatter.comment.align_tags_names_descriptions=false +org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false +org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false +org.eclipse.jdt.core.formatter.comment.count_line_length_from_starting_position=false +org.eclipse.jdt.core.formatter.comment.format_block_comments=true +org.eclipse.jdt.core.formatter.comment.format_header=false +org.eclipse.jdt.core.formatter.comment.format_html=true +org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true +org.eclipse.jdt.core.formatter.comment.format_line_comments=true +org.eclipse.jdt.core.formatter.comment.format_source_code=true +org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true +org.eclipse.jdt.core.formatter.comment.indent_root_tags=true +org.eclipse.jdt.core.formatter.comment.indent_tag_description=false +org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert +org.eclipse.jdt.core.formatter.comment.insert_new_line_between_different_tags=do not insert +org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert +org.eclipse.jdt.core.formatter.comment.line_length=100 +org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true +org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true +org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments=false +org.eclipse.jdt.core.formatter.compact_else_if=true +org.eclipse.jdt.core.formatter.continuation_indentation=4 +org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2 +org.eclipse.jdt.core.formatter.disabling_tag=@formatter\:off +org.eclipse.jdt.core.formatter.enabling_tag=@formatter\:on +org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false +org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column=true +org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true +org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true +org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true +org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_record_header=true +org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true +org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true +org.eclipse.jdt.core.formatter.indent_empty_lines=false +org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true +org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true +org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true +org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true +org.eclipse.jdt.core.formatter.indentation.size=2 +org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_enum_constant=insert +org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert +org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert +org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert +org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert +org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert +org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert +org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert +org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert +org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation=do not insert +org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert +org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert +org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert +org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert +org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert +org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_additive_operator=insert +org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert +org.eclipse.jdt.core.formatter.insert_space_after_arrow_in_switch_case=insert +org.eclipse.jdt.core.formatter.insert_space_after_arrow_in_switch_default=insert +org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert +org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_bitwise_operator=insert +org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert +org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert +org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert +org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert +org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert +org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert +org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert +org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert +org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_permitted_types=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_record_components=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_switch_case_expressions=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert +org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert +org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert +org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow=insert +org.eclipse.jdt.core.formatter.insert_space_after_logical_operator=insert +org.eclipse.jdt.core.formatter.insert_space_after_multiplicative_operator=insert +org.eclipse.jdt.core.formatter.insert_space_after_not_operator=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_record_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert +org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert +org.eclipse.jdt.core.formatter.insert_space_after_relational_operator=insert +org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert +org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert +org.eclipse.jdt.core.formatter.insert_space_after_shift_operator=insert +org.eclipse.jdt.core.formatter.insert_space_after_string_concatenation=insert +org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_additive_operator=insert +org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert +org.eclipse.jdt.core.formatter.insert_space_before_arrow_in_switch_case=insert +org.eclipse.jdt.core.formatter.insert_space_before_arrow_in_switch_default=insert +org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert +org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert +org.eclipse.jdt.core.formatter.insert_space_before_bitwise_operator=insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_record_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert +org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert +org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert +org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_permitted_types=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_record_components=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_switch_case_expressions=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow=insert +org.eclipse.jdt.core.formatter.insert_space_before_logical_operator=insert +org.eclipse.jdt.core.formatter.insert_space_before_multiplicative_operator=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_record_constructor=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_record_declaration=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_record_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try=insert +org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert +org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert +org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert +org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert +org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_relational_operator=insert +org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do not insert +org.eclipse.jdt.core.formatter.insert_space_before_shift_operator=insert +org.eclipse.jdt.core.formatter.insert_space_before_string_concatenation=insert +org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert +org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert +org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert +org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert +org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert +org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert +org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert +org.eclipse.jdt.core.formatter.join_lines_in_comments=true +org.eclipse.jdt.core.formatter.join_wrapped_lines=true +org.eclipse.jdt.core.formatter.keep_annotation_declaration_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_anonymous_type_declaration_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_code_block_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false +org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false +org.eclipse.jdt.core.formatter.keep_enum_constant_declaration_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_enum_declaration_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_if_then_body_block_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false +org.eclipse.jdt.core.formatter.keep_lambda_body_block_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_loop_body_block_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_method_body_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_record_constructor_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_record_declaration_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_simple_do_while_body_on_same_line=false +org.eclipse.jdt.core.formatter.keep_simple_for_body_on_same_line=false +org.eclipse.jdt.core.formatter.keep_simple_getter_setter_on_one_line=false +org.eclipse.jdt.core.formatter.keep_simple_while_body_on_same_line=false +org.eclipse.jdt.core.formatter.keep_switch_body_block_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_switch_case_with_arrow_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false +org.eclipse.jdt.core.formatter.keep_type_declaration_on_one_line=one_line_never +org.eclipse.jdt.core.formatter.lineSplit=100 +org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false +org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false +org.eclipse.jdt.core.formatter.number_of_blank_lines_after_code_block=0 +org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_code_block=0 +org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0 +org.eclipse.jdt.core.formatter.number_of_blank_lines_at_end_of_code_block=0 +org.eclipse.jdt.core.formatter.number_of_blank_lines_at_end_of_method_body=0 +org.eclipse.jdt.core.formatter.number_of_blank_lines_before_code_block=0 +org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1 +org.eclipse.jdt.core.formatter.parentheses_positions_in_annotation=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_catch_clause=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_enum_constant_declaration=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_for_statment=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_if_while_statement=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_lambda_declaration=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_method_delcaration=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_method_invocation=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_record_declaration=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_switch_statement=common_lines +org.eclipse.jdt.core.formatter.parentheses_positions_in_try_clause=common_lines +org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true +org.eclipse.jdt.core.formatter.tabulation.char=space +org.eclipse.jdt.core.formatter.tabulation.size=2 +org.eclipse.jdt.core.formatter.text_block_indentation=0 +org.eclipse.jdt.core.formatter.use_on_off_tags=true +org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false +org.eclipse.jdt.core.formatter.wrap_before_additive_operator=true +org.eclipse.jdt.core.formatter.wrap_before_assertion_message_operator=true +org.eclipse.jdt.core.formatter.wrap_before_assignment_operator=false +org.eclipse.jdt.core.formatter.wrap_before_bitwise_operator=true +org.eclipse.jdt.core.formatter.wrap_before_conditional_operator=true +org.eclipse.jdt.core.formatter.wrap_before_logical_operator=true +org.eclipse.jdt.core.formatter.wrap_before_multiplicative_operator=true +org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true +org.eclipse.jdt.core.formatter.wrap_before_relational_operator=true +org.eclipse.jdt.core.formatter.wrap_before_shift_operator=true +org.eclipse.jdt.core.formatter.wrap_before_string_concatenation=true +org.eclipse.jdt.core.formatter.wrap_before_switch_case_arrow_operator=false +org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=true +org.eclipse.jdt.core.javaFormatter=org.eclipse.jdt.core.defaultJavaFormatter diff --git a/src/main/eclipse/org.eclipse.jdt.ui.prefs b/src/main/eclipse/org.eclipse.jdt.ui.prefs new file mode 100644 index 00000000..7928b7c6 --- /dev/null +++ b/src/main/eclipse/org.eclipse.jdt.ui.prefs @@ -0,0 +1,121 @@ +eclipse.preferences.version=1 +editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true +formatter_profile=_Apache UIMA Code Conventions +formatter_settings_version=22 +sp_cleanup.add_all=false +sp_cleanup.add_default_serial_version_id=true +sp_cleanup.add_generated_serial_version_id=false +sp_cleanup.add_missing_annotations=true +sp_cleanup.add_missing_deprecated_annotations=true +sp_cleanup.add_missing_methods=false +sp_cleanup.add_missing_nls_tags=false +sp_cleanup.add_missing_override_annotations=true +sp_cleanup.add_missing_override_annotations_interface_methods=true +sp_cleanup.add_serial_version_id=false +sp_cleanup.always_use_blocks=true +sp_cleanup.always_use_parentheses_in_expressions=false +sp_cleanup.always_use_this_for_non_static_field_access=false +sp_cleanup.always_use_this_for_non_static_method_access=false +sp_cleanup.arrays_fill=false +sp_cleanup.bitwise_conditional_expression=false +sp_cleanup.boolean_literal=false +sp_cleanup.break_loop=false +sp_cleanup.collection_cloning=false +sp_cleanup.comparing_on_criteria=false +sp_cleanup.comparison_statement=false +sp_cleanup.controlflow_merge=false +sp_cleanup.convert_functional_interfaces=false +sp_cleanup.convert_to_enhanced_for_loop=false +sp_cleanup.convert_to_enhanced_for_loop_if_loop_var_used=false +sp_cleanup.convert_to_switch_expressions=false +sp_cleanup.correct_indentation=false +sp_cleanup.double_negation=false +sp_cleanup.else_if=false +sp_cleanup.embedded_if=false +sp_cleanup.evaluate_nullable=false +sp_cleanup.extract_increment=false +sp_cleanup.format_source_code=true +sp_cleanup.format_source_code_changes_only=false +sp_cleanup.hash=false +sp_cleanup.if_condition=false +sp_cleanup.insert_inferred_type_arguments=false +sp_cleanup.instanceof=false +sp_cleanup.invert_equals=false +sp_cleanup.join=false +sp_cleanup.lazy_logical_operator=false +sp_cleanup.make_local_variable_final=false +sp_cleanup.make_parameters_final=false +sp_cleanup.make_private_fields_final=true +sp_cleanup.make_type_abstract_if_missing_method=false +sp_cleanup.make_variable_declarations_final=false +sp_cleanup.map_cloning=false +sp_cleanup.merge_conditional_blocks=false +sp_cleanup.multi_catch=false +sp_cleanup.never_use_blocks=false +sp_cleanup.never_use_parentheses_in_expressions=true +sp_cleanup.no_string_creation=false +sp_cleanup.no_super=true +sp_cleanup.number_suffix=false +sp_cleanup.objects_equals=false +sp_cleanup.on_save_use_additional_actions=true +sp_cleanup.organize_imports=true +sp_cleanup.overridden_assignment=false +sp_cleanup.plain_replacement=false +sp_cleanup.precompile_regex=false +sp_cleanup.primitive_comparison=false +sp_cleanup.primitive_parsing=false +sp_cleanup.primitive_serialization=false +sp_cleanup.pull_up_assignment=false +sp_cleanup.push_down_negation=false +sp_cleanup.qualify_static_field_accesses_with_declaring_class=false +sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_with_declaring_class=false +sp_cleanup.qualify_static_method_accesses_with_declaring_class=false +sp_cleanup.reduce_indentation=false +sp_cleanup.redundant_falling_through_block_end=false +sp_cleanup.remove_private_constructors=true +sp_cleanup.remove_redundant_modifiers=true +sp_cleanup.remove_redundant_semicolons=false +sp_cleanup.remove_redundant_type_arguments=false +sp_cleanup.remove_trailing_whitespaces=false +sp_cleanup.remove_trailing_whitespaces_all=true +sp_cleanup.remove_trailing_whitespaces_ignore_empty=false +sp_cleanup.remove_unnecessary_array_creation=false +sp_cleanup.remove_unnecessary_casts=false +sp_cleanup.remove_unnecessary_nls_tags=false +sp_cleanup.remove_unused_imports=true +sp_cleanup.remove_unused_local_variables=false +sp_cleanup.remove_unused_private_fields=true +sp_cleanup.remove_unused_private_members=false +sp_cleanup.remove_unused_private_methods=true +sp_cleanup.remove_unused_private_types=true +sp_cleanup.simplify_lambda_expression_and_method_ref=false +sp_cleanup.single_used_field=false +sp_cleanup.sort_members=false +sp_cleanup.sort_members_all=false +sp_cleanup.standard_comparison=false +sp_cleanup.static_inner_class=false +sp_cleanup.strictly_equal_or_different=false +sp_cleanup.stringbuilder=false +sp_cleanup.substring=false +sp_cleanup.switch=false +sp_cleanup.ternary_operator=false +sp_cleanup.try_with_resource=false +sp_cleanup.unlooped_while=false +sp_cleanup.unreachable_block=false +sp_cleanup.use_anonymous_class_creation=false +sp_cleanup.use_autoboxing=false +sp_cleanup.use_blocks=true +sp_cleanup.use_blocks_only_for_return_and_throw=false +sp_cleanup.use_directly_map_method=false +sp_cleanup.use_lambda=false +sp_cleanup.use_parentheses_in_expressions=false +sp_cleanup.use_this_for_non_static_field_access=false +sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true +sp_cleanup.use_this_for_non_static_method_access=false +sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true +sp_cleanup.use_unboxing=false +sp_cleanup.use_var=false +sp_cleanup.useless_continue=false +sp_cleanup.useless_return=false
