├── org.knime.examples.feature ├── build.properties ├── .settings │ └── org.eclipse.core.resources.prefs └── .project ├── .gitignore ├── .lfsconfig ├── python ├── node-cog.png ├── knime.yml ├── pixi.toml ├── unitconverter.py └── LICENSE.txt ├── org.knime.examples.minimal ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.ui.prefs │ └── org.eclipse.jdt.core.prefs ├── img │ ├── button.png │ ├── date.png │ ├── file.png │ ├── number.png │ ├── text.png │ ├── time.png │ ├── checkbox.png │ ├── comboBox.png │ ├── dateTime.png │ ├── dropdown.png │ ├── interval.png │ ├── section.png │ ├── twinList.png │ ├── credentials.png │ ├── multiFile.png │ ├── textMessage.png │ ├── valueSwitch.png │ ├── columnFilter.png │ ├── radioButtons.png │ ├── zonedDateTime.png │ ├── arrayLayoutCard.png │ ├── horizontalLayout.png │ ├── arrayLayoutCompact.png │ └── sectionWithSubPanel.png ├── src │ └── org │ │ └── knime │ │ └── examples │ │ └── minimal │ │ ├── node-cog.png │ │ ├── MinimalWebUISimpleStreamableNodeModel.java │ │ ├── MinimalNodeSettings.java │ │ ├── MinimalWebUINodeFactory.java │ │ ├── MinimalWebUISimpleStreamableNodeFactory.java │ │ └── MinimalWebUINodeModel.java ├── build.properties ├── .classpath ├── META-INF │ └── MANIFEST.MF ├── .project ├── plugin.xml ├── dialogElements.md └── README.md ├── org.knime.examples.update ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── category.xml └── .project ├── org.knime.examples.unitconverter ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.ui.prefs │ └── org.eclipse.jdt.core.prefs ├── src │ └── org │ │ └── knime │ │ └── examples │ │ └── unitconverter │ │ ├── node-cog.png │ │ ├── OutputColumnSettings.java │ │ ├── UnitConverterNodeSettings.java │ │ ├── ConversionSettings.java │ │ ├── UnitConverterNodeFactory.java │ │ └── UnitConverterNodeModel.java ├── build.properties ├── .classpath ├── META-INF │ └── MANIFEST.MF ├── plugin.xml └── .project ├── .mvn └── extensions.xml ├── .project ├── .gitattributes ├── README.md └── pom.xml /org.knime.examples.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | */bin/ 2 | */target/ 3 | */build/ 4 | .polyglot* 5 | 6 | python/__pycache__ -------------------------------------------------------------------------------- /.lfsconfig: -------------------------------------------------------------------------------- 1 | [lfs] 2 | url = https://bitbucket.org/KNIME/knime-examples.git/info/lfs 3 | -------------------------------------------------------------------------------- /python/node-cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/python/node-cog.png -------------------------------------------------------------------------------- /org.knime.examples.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /org.knime.examples.update/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/button.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/date.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/file.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/number.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/text.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/time.png -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/checkbox.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/comboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/comboBox.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/dateTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/dateTime.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/dropdown.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/interval.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/section.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/twinList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/twinList.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/credentials.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/multiFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/multiFile.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/textMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/textMessage.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/valueSwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/valueSwitch.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/columnFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/columnFilter.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/radioButtons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/radioButtons.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/zonedDateTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/zonedDateTime.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/arrayLayoutCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/arrayLayoutCard.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/horizontalLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/horizontalLayout.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/arrayLayoutCompact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/arrayLayoutCompact.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/img/sectionWithSubPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/img/sectionWithSubPanel.png -------------------------------------------------------------------------------- /org.knime.examples.update/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/src/org/knime/examples/minimal/node-cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.minimal/src/org/knime/examples/minimal/node-cog.png -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/src/org/knime/examples/unitconverter/node-cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knime/knime-examples/HEAD/org.knime.examples.unitconverter/src/org/knime/examples/unitconverter/node-cog.png -------------------------------------------------------------------------------- /org.knime.examples.minimal/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | bin.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | LICENSE.TXT 7 | src.includes = LICENSE.TXT 8 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | bin.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | LICENSE.TXT 7 | src.includes = LICENSE.TXT 8 | -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.eclipse.tycho 5 | tycho-build 6 | 4.0.7 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /python/knime.yml: -------------------------------------------------------------------------------- 1 | group_id: org.knime.example 2 | name: unitconverter 3 | author: Carsten Haubold 4 | vendor: KNIME AG, Zurich, Switzerland 5 | version: 0.1.0 6 | pixi_toml_path: pixi.toml 7 | extension_module: unitconverter 8 | description: An example KNIME node written in Python 9 | long_description: An example KNIME node written in Python that allows to convert between units 10 | license_file: LICENSE.txt 11 | -------------------------------------------------------------------------------- /org.knime.examples.update/category.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Build artifacts from knime-examples 9 | 10 | 11 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Automatic-Module-Name: org.knime.examples.minimal 4 | Bundle-Name: Minimal template nodes for KNIME Analytics Platform 5 | Bundle-RequiredExecutionEnvironment: JavaSE-17 6 | Bundle-SymbolicName: org.knime.examples.minimal;singleton:=true 7 | Bundle-Version: 1.0.0.qualifier 8 | Bundle-ClassPath: . 9 | Bundle-Vendor: KNIME AG, Zurich, Switzerland 10 | Bundle-ActivationPolicy: lazy 11 | Export-Package: org.knime.examples.minimal 12 | Require-Bundle: org.knime.core;bundle-version="[5.6.0,6.0.0)", 13 | org.knime.core.ui;bundle-version="[5.6.0,6.0.0)" 14 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Automatic-Module-Name: org.knime.examples.unitconverter 4 | Bundle-Name: Unit Converter Node for KNIME Analytics Platform 5 | Bundle-RequiredExecutionEnvironment: JavaSE-17 6 | Bundle-SymbolicName: org.knime.examples.unitconverter;singleton:=true 7 | Bundle-Version: 1.0.0.qualifier 8 | Bundle-ClassPath: . 9 | Bundle-Vendor: KNIME AG, Zurich, Switzerland 10 | Bundle-ActivationPolicy: lazy 11 | Export-Package: org.knime.examples.unitconverter 12 | Require-Bundle: org.knime.core;bundle-version="[5.6.0,6.0.0)", 13 | org.knime.core.ui;bundle-version="[5.6.0,6.0.0)" 14 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 12 | 13 | 14 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | knime-examples 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.m2e.core.maven2Builder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.m2e.core.maven2Nature 16 | 17 | 18 | 19 | 1746798692446 20 | 21 | 30 22 | 23 | org.eclipse.core.resources.regexFilterMatcher 24 | node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.knime.examples.minimal 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.knime.examples.unitconverter 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 12 | 13 | 14 | 16 | 19 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /org.knime.examples.update/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.knime.examples.update 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.m2e.core.maven2Builder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.m2e.core.maven2Nature 16 | 17 | 18 | 19 | 1746798692458 20 | 21 | 30 22 | 23 | org.eclipse.core.resources.regexFilterMatcher 24 | node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.knime.examples.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.knime.examples.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.m2e.core.maven2Builder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.m2e.core.maven2Nature 21 | org.eclipse.pde.FeatureNature 22 | 23 | 24 | 25 | 1746798692450 26 | 27 | 30 28 | 29 | org.eclipse.core.resources.regexFilterMatcher 30 | node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto !eol 2 | **/.api_filters text diff=xml 3 | **/.classpath text diff=xml 4 | **/.project text diff=xml 5 | **/MANIFEST.MF text 6 | **/build.properties text 7 | **/p2.inf text 8 | *.ai binary filter=lfs diff=lfs merge=lfs 9 | *.bmp binary 10 | *.cspex text diff=xml 11 | *.gif binary 12 | *.html text diff=html 13 | *.ico binary 14 | *.jar binary filter=lfs diff=lfs merge=lfs 15 | *.java text diff=java 16 | *.jpg binary 17 | *.js text 18 | *.json text 19 | *.jsx text 20 | *.png binary 21 | *.prefs text 22 | *.sh text 23 | *.svg text diff=xml 24 | *.xml text diff=xml 25 | *.xsd text diff=xml 26 | *.css text diff=css 27 | *.zip binary filter=lfs diff=lfs merge=lfs 28 | *.pdf binary filter=lfs diff=lfs merge=lfs 29 | *.dll binary filter=lfs diff=lfs merge=lfs 30 | *.so binary filter=lfs diff=lfs merge=lfs 31 | *.dylib binary filter=lfs diff=lfs merge=lfs 32 | *.jsa binary filter=lfs diff=lfs merge=lfs 33 | *.sym binary filter=lfs diff=lfs merge=lfs 34 | *.msi binary filter=lfs diff=lfs merge=lfs 35 | *.tar.gz binary filter=lfs diff=lfs merge=lfs -------------------------------------------------------------------------------- /python/pixi.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | authors = ["Bobby Test "] 3 | channels = ["knime", "knime/label/nightly", "conda-forge"] 4 | name = "unitconverter-extension" 5 | platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"] 6 | version = "0.1.0" 7 | 8 | [tasks] 9 | 10 | [dependencies] 11 | python = "3.11.*" # Base dependency 12 | knime-extension = "*" # Base dependency 13 | knime-python-base = "*" # Base dependency 14 | scipy = "*" # Example dependency added by the user for the extension 15 | 16 | [feature.build.dependencies] 17 | python = "3.9.*" # Debendency needed for the bundling process 18 | knime-extension-bundling = "5.5.*" # Dependency needed for the bundling process 19 | 20 | [feature.build.tasks] 21 | build = { args = [{ "arg" = "dest", "default" = "./local-update-site" }], cmd = "python ./.pixi/envs/build/bin/build_python_extension.py . {{ dest }}"} 22 | 23 | [environments] 24 | build = {features = ["build"], no-default-feature = true} # Environment used for bundling the extension 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ![KNIME® logo](https://www.knime.com/sites/default/files/knime_logo_github_40x40_4layers.png) KNIME® Analytics Platform - Example Node Implementations 2 | 3 | ### Content 4 | This repository contains example implementations for nodes in KNIME Analytics Platform nodes. 5 | 6 | * _org.knime.examples.minimal_: Example containing a reference implementation of a KNIME Extension providing minimalistic Java-based nodes with Web UI dialogs that can be used as templates when creating new nodes. 7 | * _org.knime.examples.unitconverter_: Example containing a reference implementation of a KNIME Extension including a simple Java-based node that converts common metric / imperial units. 8 | * _python_: Example containing a reference implementation of the unit converter node in Python. 9 | 10 | ### Development 11 | Instructions for how to develop extensions for KNIME Analytics Platform can be found in the _knime-sdk-setup_ repository on [BitBucket](https://bitbucket.org/KNIME/knime-sdk-setup) or [GitHub](http://github.com/knime/knime-sdk-setup). 12 | 13 | ### Join the Community! 14 | * [KNIME Forum](https://tech.knime.org/forum) 15 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/dialogElements.md: -------------------------------------------------------------------------------- 1 | # Available Widgets 2 | 3 | ## Standard types 4 | 5 | ### Text 6 | 7 | ![image](img/text.png) 8 | 9 | ### Number 10 | 11 | ![image](img/number.png) 12 | 13 | ### Checkbox 14 | 15 | ![image](img/checkbox.png) 16 | 17 | ## Single selection 18 | 19 | ### Dropdown 20 | 21 | ![image](img/dropdown.png) 22 | 23 | ### Value Switch 24 | 25 | ![image](img/valueSwitch.png) 26 | 27 | ### Radio Buttons 28 | 29 | ![image](img/radioButtons.png) 30 | 31 | ## Multiple Selection 32 | 33 | ## ComboBox 34 | 35 | ![image](img/comboBox.png) 36 | 37 | ### Twin List 38 | 39 | ![image](img/twinList.png) 40 | 41 | ### Column Filter 42 | 43 | ![image](img/columnFilter.png) 44 | 45 | ## Credentials 46 | 47 | ![image](img/credentials.png) 48 | 49 | ## File Chooser 50 | 51 | ### Single File Chooser 52 | 53 | ![image](img/file.png) 54 | 55 | ### Multi File Chooser 56 | 57 | ![image](img/multiFile.png) 58 | 59 | ## Date & Time 60 | 61 | ### Date 62 | 63 | ![image](img/date.png) 64 | 65 | ### Time 66 | 67 | ![image](img/time.png) 68 | 69 | ### DateTime 70 | 71 | ![image](img/dateTime.png) 72 | 73 | ### ZonedDateTime 74 | 75 | ![image](img/zonedDateTime.png) 76 | 77 | ### Time Interval 78 | 79 | ![image](img/interval.png) 80 | 81 | ## Text Message 82 | 83 | ![image](img/textMessage.png) 84 | 85 | ## Button 86 | 87 | ![image](img/button.png) 88 | 89 | # Layouts 90 | 91 | ## Section 92 | 93 | ![image](img/section.png) 94 | 95 | ### With Sub Panel 96 | 97 | ![image](img/sectionWithSubPanel.png) 98 | 99 | ## Horizontal Layout 100 | 101 | ![image](img/horizontalLayout.png) 102 | 103 | ## Array Layout 104 | 105 | ![image](img/arrayLayoutCard.png) 106 | 107 | ### Compact Array Layout 108 | 109 | ![image](img/arrayLayoutCompact.png) 110 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/src/org/knime/examples/unitconverter/OutputColumnSettings.java: -------------------------------------------------------------------------------- 1 | package org.knime.examples.unitconverter; 2 | 3 | import org.knime.node.parameters.NodeParameters; 4 | import org.knime.node.parameters.Widget; 5 | import org.knime.node.parameters.updates.Effect; 6 | import org.knime.node.parameters.updates.EffectPredicate; 7 | import org.knime.node.parameters.updates.EffectPredicateProvider; 8 | import org.knime.node.parameters.updates.ParameterReference; 9 | import org.knime.node.parameters.updates.ValueReference; 10 | import org.knime.node.parameters.updates.Effect.EffectType; 11 | import org.knime.node.parameters.widget.choices.Label; 12 | 13 | final class OutputColumnSettings implements NodeParameters { 14 | 15 | enum ReplaceOrAppend { 16 | @Label(value = "Replace", description = "Replaces the selected columns by the new columns.") 17 | REPLACE, 18 | 19 | @Label(value = "Append with suffix", description = """ 20 | Appends the selected columns to the input table with \ 21 | a new name that is the previous name plus the provided suffix. 22 | """) 23 | APPEND; 24 | 25 | interface ReplaceOrAppendRef extends ParameterReference { 26 | } 27 | 28 | static final class IsAppend implements EffectPredicateProvider { 29 | @Override 30 | public EffectPredicate init(final PredicateInitializer i) { 31 | return i.getEnum(ReplaceOrAppendRef.class).isOneOf(ReplaceOrAppend.APPEND); 32 | } 33 | } 34 | } 35 | 36 | @Widget(title = "Output column mode", description = "Select whether to replace or append the selected columns.") 37 | @ValueReference(ReplaceOrAppend.ReplaceOrAppendRef.class) 38 | ReplaceOrAppend m_replaceOrAppend = ReplaceOrAppend.REPLACE; 39 | 40 | @Widget(title = "Suffix", description = "The suffix to append to the column names if the mode is Append.") 41 | @Effect(predicate = ReplaceOrAppend.IsAppend.class, type = EffectType.SHOW) 42 | String m_suffix = ""; 43 | } 44 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/README.md: -------------------------------------------------------------------------------- 1 | # ![KNIME® logo](https://www.knime.com/sites/default/files/knime_logo_github_40x40_4layers.png) KNIME® Analytics Platform - Developing a new KNIME node 2 | 3 | ### How to use the templates in this plugin to create a new KNIME node 4 | 5 | This plugin contains minimalistic KNIME nodes with Web UI dialogs that can be used as templates when creating new nodes. For creating a new node based on one of these templates, follow these steps: 6 | 7 | 1. Determine whether the logic of the node you are planning to implement can be expressed via a [ColumnRearranger](https://bitbucket.org/KNIME/knime-core/src/master/org.knime.core/src/eclipse/org/knime/core/data/container/ColumnRearranger.java). This is generally the case if the node merely re-orders / adds / removes columns to / from the input table but does not change the number of rows. If so, use the MinimalWebUISimpleStreamableNodeFactory as template, otherwise, go with the MinimalWebUINodeFactory. 8 | 2. Create copies of the applicable minimal factory and model classes as well as the settings class. Give the copies fitting names, such as MyNodeFactory, MyNodeModel, and MyNodeSettings. In the model class, update the references to the settings class; in the factory class, update the references to the model and settings classes. Place the files in their own package in the src folder of the plugin you'd like the node to be a part of. 9 | 3. Register the new node factory in the plugin.xml of the plugin to which the code was copied, e.g., org.knime.examples.minimal/plugin.xml. 10 | 4. Update the node factory class with a fitting name for the node, as well as descriptions, an icon, etc. Once you have done so, launch KNIME Analytics Platform and make sure you find the node in the node search. 11 | 5. Update the node settings class with any settings that you would like your node to be configurable with. Provide settings with [@Widget](https://bitbucket.org/KNIME/knime-core-ui/src/master/org.knime.core.ui/src/eclipse/org/knime/core/webui/node/dialog/defaultdialog/widget/Widget.java), or similar, more specialized, annotations to have them contribute to the node's configuration dialog. See the Javadoc of [DefaultNodeSettings](https://bitbucket.org/KNIME/knime-core-ui/src/master/org.knime.core.ui/src/eclipse/org/knime/core/webui/node/dialog/defaultdialog/DefaultNodeSettings.java) for a detailed description of which kinds of settings are allowed and how they can be controlled through annotations. A visual overview of the elements is available [here](dialogElements.md). 12 | 6. Finally, update the node model with its logic that defines how the node processes its input data and how it creates its output data. 13 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/src/org/knime/examples/unitconverter/UnitConverterNodeSettings.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ------------------------------------------------------------------------ 3 | * 4 | * Copyright by KNIME AG, Zurich, Switzerland 5 | * Website: http://www.knime.com; Email: contact@knime.com 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License, Version 3, as 9 | * published by the Free Software Foundation. 10 | * 11 | * This program is distributed in the hope that it will be useful, but 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, see . 18 | * 19 | * Additional permission under GNU GPL version 3 section 7: 20 | * 21 | * KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs. 22 | * Hence, KNIME and ECLIPSE are both independent programs and are not 23 | * derived from each other. Should, however, the interpretation of the 24 | * GNU GPL Version 3 ("License") under any applicable laws result in 25 | * KNIME and ECLIPSE being a combined program, KNIME AG herewith grants 26 | * you the additional permission to use and propagate KNIME together with 27 | * ECLIPSE with only the license terms in place for ECLIPSE applying to 28 | * ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the 29 | * license terms of ECLIPSE themselves allow for the respective use and 30 | * propagation of ECLIPSE together with KNIME. 31 | * 32 | * Additional permission relating to nodes for KNIME that extend the Node 33 | * Extension (and in particular that are based on subclasses of NodeModel, 34 | * NodeDialog, and NodeView) and that only interoperate with KNIME through 35 | * standard APIs ("Nodes"): 36 | * Nodes are deemed to be separate and independent programs and to not be 37 | * covered works. Notwithstanding anything to the contrary in the 38 | * License, the License does not apply to Nodes, you are not required to 39 | * license Nodes under the License, and you are granted a license to 40 | * prepare and propagate Nodes, in each case even if such Nodes are 41 | * propagated with or for interoperation with KNIME. The owner of a Node 42 | * may freely choose the license terms applicable to such Node, including 43 | * when such Node is propagated with or for interoperation with KNIME. 44 | * --------------------------------------------------------------------- 45 | * 46 | */ 47 | package org.knime.examples.unitconverter; 48 | 49 | import org.knime.node.parameters.NodeParameters; 50 | import org.knime.node.parameters.NodeParametersInput; 51 | import org.knime.node.parameters.Widget; 52 | import org.knime.node.parameters.array.ArrayWidget; 53 | 54 | /** Settings for the "Unit Converter" node. */ 55 | final class UnitConverterNodeSettings implements NodeParameters { 56 | 57 | @Widget(title = "Conversions", description = "The conversions to apply to the input") 58 | @ArrayWidget(elementTitle = "Conversion") 59 | ConversionSettings[] m_conversions; 60 | 61 | UnitConverterNodeSettings() { 62 | m_conversions = new ConversionSettings[0]; 63 | } 64 | 65 | UnitConverterNodeSettings(final NodeParametersInput context) { 66 | m_conversions = new ConversionSettings[] { new ConversionSettings(context) }; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/src/org/knime/examples/minimal/MinimalWebUISimpleStreamableNodeModel.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ------------------------------------------------------------------------ 3 | * 4 | * Copyright by KNIME AG, Zurich, Switzerland 5 | * Website: http://www.knime.com; Email: contact@knime.com 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License, Version 3, as 9 | * published by the Free Software Foundation. 10 | * 11 | * This program is distributed in the hope that it will be useful, but 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, see . 18 | * 19 | * Additional permission under GNU GPL version 3 section 7: 20 | * 21 | * KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs. 22 | * Hence, KNIME and ECLIPSE are both independent programs and are not 23 | * derived from each other. Should, however, the interpretation of the 24 | * GNU GPL Version 3 ("License") under any applicable laws result in 25 | * KNIME and ECLIPSE being a combined program, KNIME AG herewith grants 26 | * you the additional permission to use and propagate KNIME together with 27 | * ECLIPSE with only the license terms in place for ECLIPSE applying to 28 | * ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the 29 | * license terms of ECLIPSE themselves allow for the respective use and 30 | * propagation of ECLIPSE together with KNIME. 31 | * 32 | * Additional permission relating to nodes for KNIME that extend the Node 33 | * Extension (and in particular that are based on subclasses of NodeModel, 34 | * NodeDialog, and NodeView) and that only interoperate with KNIME through 35 | * standard APIs ("Nodes"): 36 | * Nodes are deemed to be separate and independent programs and to not be 37 | * covered works. Notwithstanding anything to the contrary in the 38 | * License, the License does not apply to Nodes, you are not required to 39 | * license Nodes under the License, and you are granted a license to 40 | * prepare and propagate Nodes, in each case even if such Nodes are 41 | * propagated with or for interoperation with KNIME. The owner of a Node 42 | * may freely choose the license terms applicable to such Node, including 43 | * when such Node is propagated with or for interoperation with KNIME. 44 | * --------------------------------------------------------------------- 45 | * 46 | */ 47 | package org.knime.examples.minimal; 48 | 49 | import org.knime.core.data.DataTableSpec; 50 | import org.knime.core.data.container.ColumnRearranger; 51 | import org.knime.core.node.InvalidSettingsException; 52 | import org.knime.core.webui.node.impl.WebUINodeConfiguration; 53 | import org.knime.core.webui.node.impl.WebUISimpleStreamableFunctionNodeModel; 54 | 55 | /** Node Model for a minimal streamable node that can be used as a template for developing new nodes. */ 56 | @SuppressWarnings("restriction") 57 | final class MinimalWebUISimpleStreamableNodeModel extends WebUISimpleStreamableFunctionNodeModel { 58 | 59 | MinimalWebUISimpleStreamableNodeModel(WebUINodeConfiguration configuration) { 60 | super(configuration, MinimalNodeSettings.class); 61 | } 62 | 63 | @Override 64 | protected ColumnRearranger createColumnRearranger(DataTableSpec spec, MinimalNodeSettings settings) 65 | throws InvalidSettingsException { 66 | 67 | if (!spec.containsName(settings.m_column)) { 68 | throw new InvalidSettingsException( 69 | "Input column '" + settings.m_column + "' not found in input table specification."); 70 | } 71 | final var rearranger = new ColumnRearranger(spec); 72 | 73 | return rearranger; 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/src/org/knime/examples/minimal/MinimalNodeSettings.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ------------------------------------------------------------------------ 3 | * 4 | * Copyright by KNIME AG, Zurich, Switzerland 5 | * Website: http://www.knime.com; Email: contact@knime.com 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License, Version 3, as 9 | * published by the Free Software Foundation. 10 | * 11 | * This program is distributed in the hope that it will be useful, but 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, see . 18 | * 19 | * Additional permission under GNU GPL version 3 section 7: 20 | * 21 | * KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs. 22 | * Hence, KNIME and ECLIPSE are both independent programs and are not 23 | * derived from each other. Should, however, the interpretation of the 24 | * GNU GPL Version 3 ("License") under any applicable laws result in 25 | * KNIME and ECLIPSE being a combined program, KNIME AG herewith grants 26 | * you the additional permission to use and propagate KNIME together with 27 | * ECLIPSE with only the license terms in place for ECLIPSE applying to 28 | * ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the 29 | * license terms of ECLIPSE themselves allow for the respective use and 30 | * propagation of ECLIPSE together with KNIME. 31 | * 32 | * Additional permission relating to nodes for KNIME that extend the Node 33 | * Extension (and in particular that are based on subclasses of NodeModel, 34 | * NodeDialog, and NodeView) and that only interoperate with KNIME through 35 | * standard APIs ("Nodes"): 36 | * Nodes are deemed to be separate and independent programs and to not be 37 | * covered works. Notwithstanding anything to the contrary in the 38 | * License, the License does not apply to Nodes, you are not required to 39 | * license Nodes under the License, and you are granted a license to 40 | * prepare and propagate Nodes, in each case even if such Nodes are 41 | * propagated with or for interoperation with KNIME. The owner of a Node 42 | * may freely choose the license terms applicable to such Node, including 43 | * when such Node is propagated with or for interoperation with KNIME. 44 | * --------------------------------------------------------------------- 45 | * 46 | */ 47 | package org.knime.examples.minimal; 48 | 49 | import org.knime.node.parameters.NodeParameters; 50 | import org.knime.node.parameters.NodeParametersInput; 51 | import org.knime.node.parameters.Widget; 52 | import org.knime.node.parameters.widget.choices.ChoicesProvider; 53 | import org.knime.node.parameters.widget.choices.util.AllColumnsProvider; 54 | import org.knime.node.parameters.widget.choices.util.ColumnSelectionUtil; 55 | 56 | /** Settings for a minimal node that can be used as a template for developing new nodes. See the Javadoc of 57 | * {@link NodeParameters} for a full description of how to implement additional settings. */ 58 | @SuppressWarnings("restriction") 59 | final class MinimalNodeSettings implements NodeParameters { 60 | 61 | // some column selection setting that is here only for these settings not to look too empty 62 | @Widget(title = "Input column", description = "A column of the input table") 63 | @ChoicesProvider(AllColumnsProvider.class) 64 | String m_column = ""; 65 | 66 | MinimalNodeSettings() { 67 | } 68 | 69 | // optional constructor that can be removed if context is not needed for initialization 70 | MinimalNodeSettings(final NodeParametersInput context) { 71 | ColumnSelectionUtil.getFirstColumnOfFirstPort(context).ifPresent(colSpec -> m_column = colSpec.getName()); 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/src/org/knime/examples/minimal/MinimalWebUINodeFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ------------------------------------------------------------------------ 3 | * 4 | * Copyright by KNIME AG, Zurich, Switzerland 5 | * Website: http://www.knime.com; Email: contact@knime.com 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License, Version 3, as 9 | * published by the Free Software Foundation. 10 | * 11 | * This program is distributed in the hope that it will be useful, but 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, see . 18 | * 19 | * Additional permission under GNU GPL version 3 section 7: 20 | * 21 | * KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs. 22 | * Hence, KNIME and ECLIPSE are both independent programs and are not 23 | * derived from each other. Should, however, the interpretation of the 24 | * GNU GPL Version 3 ("License") under any applicable laws result in 25 | * KNIME and ECLIPSE being a combined program, KNIME AG herewith grants 26 | * you the additional permission to use and propagate KNIME together with 27 | * ECLIPSE with only the license terms in place for ECLIPSE applying to 28 | * ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the 29 | * license terms of ECLIPSE themselves allow for the respective use and 30 | * propagation of ECLIPSE together with KNIME. 31 | * 32 | * Additional permission relating to nodes for KNIME that extend the Node 33 | * Extension (and in particular that are based on subclasses of NodeModel, 34 | * NodeDialog, and NodeView) and that only interoperate with KNIME through 35 | * standard APIs ("Nodes"): 36 | * Nodes are deemed to be separate and independent programs and to not be 37 | * covered works. Notwithstanding anything to the contrary in the 38 | * License, the License does not apply to Nodes, you are not required to 39 | * license Nodes under the License, and you are granted a license to 40 | * prepare and propagate Nodes, in each case even if such Nodes are 41 | * propagated with or for interoperation with KNIME. The owner of a Node 42 | * may freely choose the license terms applicable to such Node, including 43 | * when such Node is propagated with or for interoperation with KNIME. 44 | * --------------------------------------------------------------------- 45 | * 46 | */ 47 | package org.knime.examples.minimal; 48 | 49 | import org.knime.core.node.BufferedDataTable; 50 | import org.knime.core.webui.node.impl.WebUINodeConfiguration; 51 | import org.knime.core.webui.node.impl.WebUINodeFactory; 52 | 53 | /** Node Factory for a minimal node that can be used as a template for developing new nodes. */ 54 | @SuppressWarnings("restriction") 55 | public final class MinimalWebUINodeFactory extends WebUINodeFactory { 56 | 57 | private static final WebUINodeConfiguration CONFIGURATION = WebUINodeConfiguration.builder() // 58 | .name("Minimal Web UI Node") // 59 | .icon("node-cog.png") // 60 | .shortDescription("A minimal node with Web UI dialog") // 61 | .fullDescription(""" 62 | A minimal node with Web UI dialog. 63 | """) // 64 | .modelSettingsClass(MinimalNodeSettings.class) // 65 | .addInputPort("Input table", BufferedDataTable.TYPE, "Input table") // 66 | .addOutputPort("Output table", BufferedDataTable.TYPE, "Output table") // 67 | .build(); 68 | 69 | /** 70 | * Default constructor for the node factory. 71 | */ 72 | public MinimalWebUINodeFactory() { 73 | super(CONFIGURATION); 74 | } 75 | 76 | @Override 77 | public MinimalWebUINodeModel createNodeModel() { 78 | return new MinimalWebUINodeModel(CONFIGURATION); 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/src/org/knime/examples/unitconverter/ConversionSettings.java: -------------------------------------------------------------------------------- 1 | package org.knime.examples.unitconverter; 2 | 3 | import static org.knime.node.parameters.widget.choices.util.ColumnSelectionUtil.getFirstDoubleColumn; 4 | 5 | import java.util.function.UnaryOperator; 6 | 7 | import org.knime.core.data.DataCell; 8 | import org.knime.core.data.DataType; 9 | import org.knime.core.data.def.DoubleCell; 10 | import org.knime.core.data.def.StringCell; 11 | import org.knime.node.parameters.NodeParameters; 12 | import org.knime.node.parameters.NodeParametersInput; 13 | import org.knime.node.parameters.Widget; 14 | import org.knime.node.parameters.widget.choices.ChoicesProvider; 15 | import org.knime.node.parameters.widget.choices.Label; 16 | import org.knime.node.parameters.widget.choices.ValueSwitchWidget; 17 | import org.knime.node.parameters.widget.choices.util.CompatibleColumnsProvider.DoubleColumnsProvider; 18 | 19 | final class ConversionSettings implements NodeParameters { 20 | 21 | @Widget(title = "Input column", description = "Numeric column to convert") 22 | @ChoicesProvider(DoubleColumnsProvider.class) 23 | String m_inputColumn; 24 | 25 | enum Type { 26 | @Label(value = "°C → °F (* 9/5 + 32)", description = "Celsius to Fahrenheit") 27 | C_TO_F(value -> value * 9 / 5 + 32, "°F"), 28 | 29 | @Label(value = "°F → °C (- 32) * 5/9", description = "Fahrenheit to Celsius") 30 | F_TO_C(value -> (value - 32) * 5 / 9, "°C"), 31 | 32 | @Label(value = "km → mi (/ 1.60934)", description = "Kilometres to miles") 33 | KM_TO_MI(value -> value / 1.60934, "mi"), 34 | 35 | @Label(value = "mi → km (* 1.60934)", description = "Miles to kilometres") 36 | MI_TO_KM(value -> value * 1.60934, "km"), 37 | 38 | @Label(value = "L → gal (/ 3.78541)", description = "Litres to US gallons") 39 | L_TO_GAL(value -> value / 3.78541, "gal"), 40 | 41 | @Label(value = "gal → L (* 3.78541)", description = "US gallons to litres") 42 | GAL_TO_L(value -> value * 3.78541, "L"); 43 | 44 | private final UnaryOperator m_conversionFunction; 45 | private final String m_outputUnit; 46 | 47 | Type(final UnaryOperator conversionFunction, final String outputUnit) { 48 | this.m_conversionFunction = conversionFunction; 49 | this.m_outputUnit = outputUnit; 50 | } 51 | 52 | String getOutputUnit() { 53 | return m_outputUnit; 54 | } 55 | 56 | double convert(final double value) { 57 | return m_conversionFunction.apply(value); 58 | } 59 | } 60 | 61 | @Widget(title = "Conversion", description = "Unit conversion to apply") 62 | Type m_type = Type.C_TO_F; 63 | 64 | OutputColumnSettings m_outputColumnSettings = new OutputColumnSettings(); 65 | 66 | enum StringOrNumber { 67 | @Label(value = "String with unit", description = "Return result as string with unit suffix") 68 | STRING(StringCell.TYPE), 69 | 70 | @Label(value = "Numeric only", description = "Return result as numeric value") 71 | NUMERIC(DoubleCell.TYPE); 72 | 73 | private final DataType m_dataType; 74 | 75 | StringOrNumber(final DataType dataType) { 76 | this.m_dataType = dataType; 77 | } 78 | 79 | DataType getDataType() { 80 | return m_dataType; 81 | } 82 | 83 | DataCell createCell(final double outputValue, final String outputUnit) { 84 | if (this == STRING) { 85 | return new StringCell(outputValue + " " + outputUnit); 86 | } else { 87 | return new DoubleCell(outputValue); 88 | } 89 | } 90 | } 91 | 92 | @Widget(title = "Return as string with unit suffix", description = "If unchecked, result is numeric") 93 | @ValueSwitchWidget 94 | StringOrNumber m_stringOrNumber = StringOrNumber.NUMERIC; 95 | 96 | ConversionSettings() { 97 | m_inputColumn = ""; 98 | } 99 | 100 | ConversionSettings(final NodeParametersInput context) { 101 | context.getInTableSpec(0) 102 | .ifPresent(spec -> getFirstDoubleColumn(spec).ifPresent(column -> m_inputColumn = column.getName())); 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/src/org/knime/examples/unitconverter/UnitConverterNodeFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ------------------------------------------------------------------------ 3 | * 4 | * Copyright by KNIME AG, Zurich, Switzerland 5 | * Website: http://www.knime.com; Email: contact@knime.com 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License, Version 3, as 9 | * published by the Free Software Foundation. 10 | * 11 | * This program is distributed in the hope that it will be useful, but 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, see . 18 | * 19 | * Additional permission under GNU GPL version 3 section 7: 20 | * 21 | * KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs. 22 | * Hence, KNIME and ECLIPSE are both independent programs and are not 23 | * derived from each other. Should, however, the interpretation of the 24 | * GNU GPL Version 3 ("License") under any applicable laws result in 25 | * KNIME and ECLIPSE being a combined program, KNIME AG herewith grants 26 | * you the additional permission to use and propagate KNIME together with 27 | * ECLIPSE with only the license terms in place for ECLIPSE applying to 28 | * ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the 29 | * license terms of ECLIPSE themselves allow for the respective use and 30 | * propagation of ECLIPSE together with KNIME. 31 | * 32 | * Additional permission relating to nodes for KNIME that extend the Node 33 | * Extension (and in particular that are based on subclasses of NodeModel, 34 | * NodeDialog, and NodeView) and that only interoperate with KNIME through 35 | * standard APIs ("Nodes"): 36 | * Nodes are deemed to be separate and independent programs and to not be 37 | * covered works. Notwithstanding anything to the contrary in the 38 | * License, the License does not apply to Nodes, you are not required to 39 | * license Nodes under the License, and you are granted a license to 40 | * prepare and propagate Nodes, in each case even if such Nodes are 41 | * propagated with or for interoperation with KNIME. The owner of a Node 42 | * may freely choose the license terms applicable to such Node, including 43 | * when such Node is propagated with or for interoperation with KNIME. 44 | * --------------------------------------------------------------------- 45 | * 46 | */ 47 | package org.knime.examples.unitconverter; 48 | 49 | import org.knime.node.DefaultNode; 50 | import org.knime.node.DefaultNodeFactory; 51 | 52 | /** Node Factory for the "Unit Converter" node. */ 53 | public final class UnitConverterNodeFactory extends DefaultNodeFactory { 54 | 55 | private static final DefaultNode NODE = DefaultNode.create() // 56 | .name("Unit Converter") // 57 | .icon("node-cog.png") // 58 | .shortDescription("Convert units of measure") // 59 | .fullDescription(""" 60 | Convert between common metric / imperial units. 61 | 62 | Extend the ParameterArray to support further conversions 63 | by simply adding new items in the dialog. 64 | """) // 65 | .sinceVersion(5, 5, 0) 66 | .ports(p -> p// 67 | .addInputTable("Input table", "Table with column(s) to convert") // 68 | .addOutputTable("Output table", "Table with converted columns") // 69 | ).model(m -> m // 70 | .parametersClass(UnitConverterNodeSettings.class)// 71 | .rearrangeColumns(UnitConverterNodeModel::rearrangeColumns)); 72 | 73 | /** 74 | * Default constructor for the node factory. 75 | */ 76 | public UnitConverterNodeFactory() { 77 | super(NODE); 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/src/org/knime/examples/minimal/MinimalWebUISimpleStreamableNodeFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ------------------------------------------------------------------------ 3 | * 4 | * Copyright by KNIME AG, Zurich, Switzerland 5 | * Website: http://www.knime.com; Email: contact@knime.com 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License, Version 3, as 9 | * published by the Free Software Foundation. 10 | * 11 | * This program is distributed in the hope that it will be useful, but 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, see . 18 | * 19 | * Additional permission under GNU GPL version 3 section 7: 20 | * 21 | * KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs. 22 | * Hence, KNIME and ECLIPSE are both independent programs and are not 23 | * derived from each other. Should, however, the interpretation of the 24 | * GNU GPL Version 3 ("License") under any applicable laws result in 25 | * KNIME and ECLIPSE being a combined program, KNIME AG herewith grants 26 | * you the additional permission to use and propagate KNIME together with 27 | * ECLIPSE with only the license terms in place for ECLIPSE applying to 28 | * ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the 29 | * license terms of ECLIPSE themselves allow for the respective use and 30 | * propagation of ECLIPSE together with KNIME. 31 | * 32 | * Additional permission relating to nodes for KNIME that extend the Node 33 | * Extension (and in particular that are based on subclasses of NodeModel, 34 | * NodeDialog, and NodeView) and that only interoperate with KNIME through 35 | * standard APIs ("Nodes"): 36 | * Nodes are deemed to be separate and independent programs and to not be 37 | * covered works. Notwithstanding anything to the contrary in the 38 | * License, the License does not apply to Nodes, you are not required to 39 | * license Nodes under the License, and you are granted a license to 40 | * prepare and propagate Nodes, in each case even if such Nodes are 41 | * propagated with or for interoperation with KNIME. The owner of a Node 42 | * may freely choose the license terms applicable to such Node, including 43 | * when such Node is propagated with or for interoperation with KNIME. 44 | * --------------------------------------------------------------------- 45 | * 46 | */ 47 | package org.knime.examples.minimal; 48 | 49 | import org.knime.core.node.BufferedDataTable; 50 | import org.knime.core.webui.node.impl.WebUINodeConfiguration; 51 | import org.knime.core.webui.node.impl.WebUINodeFactory; 52 | 53 | /** Node Factory for a minimal streamable node that can be used as a template for developing new nodes. */ 54 | @SuppressWarnings("restriction") 55 | public final class MinimalWebUISimpleStreamableNodeFactory 56 | extends WebUINodeFactory { 57 | 58 | private static final WebUINodeConfiguration CONFIGURATION = WebUINodeConfiguration.builder() // 59 | .name("Minimal Streamable Web UI Node") // 60 | .icon("node-cog.png") // 61 | .shortDescription("A minimal streamable node with Web UI dialog") // 62 | .fullDescription(""" 63 | A minimal streamable node with Web UI dialog. 64 | """) // 65 | .modelSettingsClass(MinimalNodeSettings.class) // 66 | .addInputPort("Input table", BufferedDataTable.TYPE, "Input table") // 67 | .addOutputPort("Output table", BufferedDataTable.TYPE, "Output table") // 68 | .build(); 69 | 70 | /** 71 | * Default constructor for the node factory. 72 | */ 73 | public MinimalWebUISimpleStreamableNodeFactory() { 74 | super(CONFIGURATION); 75 | } 76 | 77 | @Override 78 | public MinimalWebUISimpleStreamableNodeModel createNodeModel() { 79 | return new MinimalWebUISimpleStreamableNodeModel(CONFIGURATION); 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/src/org/knime/examples/minimal/MinimalWebUINodeModel.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ------------------------------------------------------------------------ 3 | * 4 | * Copyright by KNIME AG, Zurich, Switzerland 5 | * Website: http://www.knime.com; Email: contact@knime.com 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License, Version 3, as 9 | * published by the Free Software Foundation. 10 | * 11 | * This program is distributed in the hope that it will be useful, but 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, see . 18 | * 19 | * Additional permission under GNU GPL version 3 section 7: 20 | * 21 | * KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs. 22 | * Hence, KNIME and ECLIPSE are both independent programs and are not 23 | * derived from each other. Should, however, the interpretation of the 24 | * GNU GPL Version 3 ("License") under any applicable laws result in 25 | * KNIME and ECLIPSE being a combined program, KNIME AG herewith grants 26 | * you the additional permission to use and propagate KNIME together with 27 | * ECLIPSE with only the license terms in place for ECLIPSE applying to 28 | * ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the 29 | * license terms of ECLIPSE themselves allow for the respective use and 30 | * propagation of ECLIPSE together with KNIME. 31 | * 32 | * Additional permission relating to nodes for KNIME that extend the Node 33 | * Extension (and in particular that are based on subclasses of NodeModel, 34 | * NodeDialog, and NodeView) and that only interoperate with KNIME through 35 | * standard APIs ("Nodes"): 36 | * Nodes are deemed to be separate and independent programs and to not be 37 | * covered works. Notwithstanding anything to the contrary in the 38 | * License, the License does not apply to Nodes, you are not required to 39 | * license Nodes under the License, and you are granted a license to 40 | * prepare and propagate Nodes, in each case even if such Nodes are 41 | * propagated with or for interoperation with KNIME. The owner of a Node 42 | * may freely choose the license terms applicable to such Node, including 43 | * when such Node is propagated with or for interoperation with KNIME. 44 | * --------------------------------------------------------------------- 45 | * 46 | */ 47 | package org.knime.examples.minimal; 48 | 49 | import org.knime.core.data.DataTableSpec; 50 | import org.knime.core.node.BufferedDataTable; 51 | import org.knime.core.node.ExecutionContext; 52 | import org.knime.core.node.InvalidSettingsException; 53 | import org.knime.core.node.KNIMEException; 54 | import org.knime.core.webui.node.impl.WebUINodeConfiguration; 55 | import org.knime.core.webui.node.impl.WebUINodeModel; 56 | 57 | /** Node Model for a minimal node that can be used as a template for developing new nodes. */ 58 | @SuppressWarnings("restriction") 59 | final class MinimalWebUINodeModel extends WebUINodeModel { 60 | 61 | MinimalWebUINodeModel(WebUINodeConfiguration configuration) { 62 | super(configuration, MinimalNodeSettings.class); 63 | } 64 | 65 | @Override 66 | protected DataTableSpec[] configure(DataTableSpec[] inSpecs, MinimalNodeSettings settings) 67 | throws InvalidSettingsException { 68 | 69 | if (!inSpecs[0].containsName(settings.m_column)) { 70 | throw new InvalidSettingsException( 71 | "Input column '" + settings.m_column + "' not found in input table specification."); 72 | } 73 | return inSpecs; 74 | } 75 | 76 | @Override 77 | protected BufferedDataTable[] execute(BufferedDataTable[] inData, ExecutionContext exec, 78 | MinimalNodeSettings settings) throws Exception { 79 | 80 | if (!inData[0].getDataTableSpec().containsName(settings.m_column)) { 81 | throw new KNIMEException( 82 | "Input column '" + settings.m_column + "' not found in input table specification."); 83 | } 84 | return inData; 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /python/unitconverter.py: -------------------------------------------------------------------------------- 1 | import knime.extension as knext 2 | 3 | 4 | def is_numeric(column: knext.Column) -> bool: 5 | """ 6 | Checks if column is numeric e.g. int, long or double. 7 | @return: True if Column is numeric 8 | """ 9 | return ( 10 | column.ktype == knext.double() 11 | or column.ktype == knext.int32() 12 | or column.ktype == knext.int64() 13 | ) 14 | 15 | 16 | # ──────────────────────────────────────────────────────────────── 17 | # 1. Parameter group: one conversion “row” inside the array 18 | # ──────────────────────────────────────────────────────────────── 19 | @knext.parameter_group("Conversion Settings") 20 | class _Conversion: 21 | input_column = knext.ColumnParameter( 22 | label="Input column", 23 | description="Numeric column to convert", 24 | column_filter=is_numeric, 25 | ) 26 | 27 | class _Which(knext.EnumParameterOptions): 28 | C_TO_F = ("°C → °F (* 9/5 + 32)", "Celsius to Fahrenheit") 29 | F_TO_C = ("°F → °C (- 32) * 5/9", "Fahrenheit to Celsius") 30 | KM_TO_MI = ("km → mi (/ 1.60934)", "Kilometres to miles") 31 | MI_TO_KM = ("mi → km (* 1.60934)", "Miles to kilometres") 32 | L_TO_GAL = ("L → gal (/ 3.78541)", "Litres to US gallons") 33 | GAL_TO_L = ("gal → L (* 3.78541)", "US gallons to litres") 34 | 35 | conversion = knext.EnumParameter( 36 | label="Conversion", 37 | description="Unit conversion to apply", 38 | default_value=_Which.C_TO_F.name, 39 | enum=_Which, 40 | ) 41 | 42 | output_column = knext.StringParameter( 43 | label="Output column name", 44 | description="Name of the new column", 45 | default_value="converted", 46 | ) 47 | 48 | as_string = knext.BoolParameter( 49 | label="Return as string with unit suffix", 50 | description="If unchecked, result is numeric", 51 | default_value=False, 52 | ) 53 | 54 | 55 | # ──────────────────────────────────────────────────────────────── 56 | # 2. The node class itself 57 | # ──────────────────────────────────────────────────────────────── 58 | @knext.node( 59 | name="Unit Converter (Python)", 60 | node_type=knext.NodeType.MANIPULATOR, 61 | icon_path="node-cog.png", 62 | category="/labs/", 63 | ) 64 | @knext.input_table( 65 | name="Input data (must contain numeric column[s])", 66 | description="Table that holds the values to convert", 67 | ) 68 | @knext.output_table( 69 | name="Converted data", 70 | description="Original table plus converted column(s)", 71 | ) 72 | class UnitConverterNode: 73 | """Convert between common metric / imperial units. 74 | 75 | Extend the ParameterArray to support further conversions 76 | by simply adding new items in the dialog. 77 | """ 78 | 79 | conversions = knext.ParameterArray( 80 | label="Conversions", 81 | description="Add one or more conversions", 82 | parameters=_Conversion(), 83 | layout_direction=knext.LayoutDirection.VERTICAL, 84 | array_title="Unit conversion", 85 | button_text="Add unit conversion", 86 | ) 87 | 88 | # ------ configure() builds the output spec so columns show up immediately 89 | def configure(self, cfg_ctx, input_spec): 90 | output_spec = input_spec 91 | 92 | for conv in self.conversions: 93 | new_name = conv.output_column 94 | if new_name in output_spec.column_names: 95 | cfg_ctx.set_warning( 96 | f"Column '{new_name}' already exists and will be overwritten." 97 | ) 98 | output_spec = output_spec.remove(new_name) 99 | 100 | if conv.as_string: 101 | output_spec = output_spec.append(knext.Column(knext.string(), new_name)) 102 | else: 103 | output_spec = output_spec.append(knext.Column(knext.double(), new_name)) 104 | 105 | return output_spec 106 | 107 | # ------ execute() does the real work 108 | def execute(self, exec_ctx, input_table): 109 | df = input_table.to_pandas() 110 | for conv in self.conversions: 111 | col = conv.input_column 112 | out = conv.output_column 113 | 114 | series = df[col].astype(float) # safe cast 115 | 116 | match _Conversion._Which[conv.conversion]: 117 | case _Conversion._Which.C_TO_F: 118 | series = series * 9 / 5 + 32 119 | unit = " °F" 120 | case _Conversion._Which.F_TO_C: 121 | series = (series - 32) * 5 / 9 122 | unit = " °C" 123 | case _Conversion._Which.KM_TO_MI: 124 | series = series / 1.60934 125 | unit = " mi" 126 | case _Conversion._Which.MI_TO_KM: 127 | series = series * 1.60934 128 | unit = " km" 129 | case _Conversion._Which.L_TO_GAL: 130 | series = series / 3.78541 131 | unit = " gal" 132 | case _Conversion._Which.GAL_TO_L: 133 | series = series * 3.78541 134 | unit = " L" 135 | case _: 136 | raise ValueError(f"Unknown conversion selected: {conv.conversion.name}") 137 | 138 | df[out] = series.round(6).astype(str) + unit if conv.as_string else series 139 | 140 | return knext.Table.from_pandas(df) 141 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/src/org/knime/examples/unitconverter/UnitConverterNodeModel.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ------------------------------------------------------------------------ 3 | * 4 | * Copyright by KNIME AG, Zurich, Switzerland 5 | * Website: http://www.knime.com; Email: contact@knime.com 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License, Version 3, as 9 | * published by the Free Software Foundation. 10 | * 11 | * This program is distributed in the hope that it will be useful, but 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, see . 18 | * 19 | * Additional permission under GNU GPL version 3 section 7: 20 | * 21 | * KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs. 22 | * Hence, KNIME and ECLIPSE are both independent programs and are not 23 | * derived from each other. Should, however, the interpretation of the 24 | * GNU GPL Version 3 ("License") under any applicable laws result in 25 | * KNIME and ECLIPSE being a combined program, KNIME AG herewith grants 26 | * you the additional permission to use and propagate KNIME together with 27 | * ECLIPSE with only the license terms in place for ECLIPSE applying to 28 | * ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the 29 | * license terms of ECLIPSE themselves allow for the respective use and 30 | * propagation of ECLIPSE together with KNIME. 31 | * 32 | * Additional permission relating to nodes for KNIME that extend the Node 33 | * Extension (and in particular that are based on subclasses of NodeModel, 34 | * NodeDialog, and NodeView) and that only interoperate with KNIME through 35 | * standard APIs ("Nodes"): 36 | * Nodes are deemed to be separate and independent programs and to not be 37 | * covered works. Notwithstanding anything to the contrary in the 38 | * License, the License does not apply to Nodes, you are not required to 39 | * license Nodes under the License, and you are granted a license to 40 | * prepare and propagate Nodes, in each case even if such Nodes are 41 | * propagated with or for interoperation with KNIME. The owner of a Node 42 | * may freely choose the license terms applicable to such Node, including 43 | * when such Node is propagated with or for interoperation with KNIME. 44 | * --------------------------------------------------------------------- 45 | * 46 | */ 47 | package org.knime.examples.unitconverter; 48 | 49 | import static org.knime.examples.unitconverter.OutputColumnSettings.ReplaceOrAppend.REPLACE; 50 | 51 | import org.knime.core.data.DataCell; 52 | import org.knime.core.data.DataColumnSpecCreator; 53 | import org.knime.core.data.DataRow; 54 | import org.knime.core.data.DoubleValue; 55 | import org.knime.core.data.container.ColumnRearranger; 56 | import org.knime.core.data.container.SingleCellFactory; 57 | import org.knime.core.node.InvalidSettingsException; 58 | import org.knime.core.util.UniqueNameGenerator; 59 | import org.knime.node.DefaultModel.RearrangeColumnsInput; 60 | import org.knime.node.DefaultModel.RearrangeColumnsOutput; 61 | 62 | /** Model for the "Unit Converter" node. */ 63 | final class UnitConverterNodeModel { 64 | 65 | static void rearrangeColumns(final RearrangeColumnsInput in, final RearrangeColumnsOutput out) 66 | throws InvalidSettingsException { 67 | final var spec = in.getDataTableSpec(); 68 | final var settings = in. getParameters(); 69 | final var rearranger = new ColumnRearranger(spec); 70 | final var uniqueNameGenerator = new UniqueNameGenerator(spec); 71 | 72 | for (final ConversionSettings conversion : settings.m_conversions) { 73 | final var inputColumnIndex = spec.findColumnIndex(conversion.m_inputColumn); 74 | if (inputColumnIndex < 0) { 75 | throw new InvalidSettingsException( 76 | "Input column '" + conversion.m_inputColumn + "' not found in input table specification."); 77 | } 78 | final var inputColumnName = spec.getColumnSpec(inputColumnIndex).getName(); 79 | final var outputColumnSettings = conversion.m_outputColumnSettings; 80 | 81 | if (outputColumnSettings.m_replaceOrAppend == REPLACE) { 82 | rearranger.replace(new UnitConverterCellFactory(inputColumnName, inputColumnIndex, conversion), 83 | inputColumnName); 84 | } else { 85 | rearranger.append(new UnitConverterCellFactory( 86 | uniqueNameGenerator.newName(inputColumnName + outputColumnSettings.m_suffix), inputColumnIndex, 87 | conversion)); 88 | } 89 | } 90 | 91 | out.setColumnRearranger(rearranger); 92 | } 93 | 94 | static final class UnitConverterCellFactory extends SingleCellFactory { 95 | 96 | private final int m_columnIndex; 97 | 98 | private final ConversionSettings m_conversion; 99 | 100 | UnitConverterCellFactory(final String columnName, final int columnIndex, final ConversionSettings conversion) { 101 | super(new DataColumnSpecCreator(columnName, conversion.m_stringOrNumber.getDataType()).createSpec()); 102 | m_conversion = conversion; 103 | m_columnIndex = columnIndex; 104 | } 105 | 106 | @Override 107 | public DataCell getCell(final DataRow row) { 108 | final var inputCell = row.getCell(m_columnIndex); 109 | if (inputCell.isMissing()) { 110 | return inputCell; 111 | } 112 | final var inputValue = ((DoubleValue)row.getCell(m_columnIndex)).getDoubleValue(); 113 | final var outputValue = m_conversion.m_type.convert(inputValue); 114 | return m_conversion.m_stringOrNumber.createCell(outputValue, m_conversion.m_type.getOutputUnit()); 115 | } 116 | } 117 | } 118 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 4.0.0 6 | 7 | org.knime 8 | knime-examples 9 | ${revision}${changelist} 10 | pom 11 | 12 | 13 | 1.0.0 14 | -SNAPSHOT 15 | 5.3 16 | 4.0.7 17 | ${tycho.version} 18 | UTF-8 19 | UTF-8 20 | 21 | 22 | 23 | 24 | org.knime.examples.minimal 25 | org.knime.examples.unitconverter 26 | org.knime.examples.feature 27 | org.knime.examples.update 28 | 29 | 30 | 31 | 32 | 33 | p2-knime-update-site 34 | p2 35 | https://update.knime.com/analytics-platform/${knime.version} 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | org.eclipse.tycho 45 | tycho-maven-plugin 46 | ${tycho.version} 47 | true 48 | 49 | 50 | org.eclipse.tycho 51 | tycho-packaging-plugin 52 | ${tycho.version} 53 | 54 | 55 | org.eclipse.tycho 56 | target-platform-configuration 57 | ${tycho.version} 58 | 59 | 60 | org.eclipse.tycho 61 | tycho-p2-repository-plugin 62 | ${tycho.version} 63 | 64 | 65 | org.eclipse.tycho 66 | tycho-p2-director-plugin 67 | ${tycho.version} 68 | 69 | 70 | org.eclipse.tycho 71 | tycho-surefire-plugin 72 | ${tycho.version} 73 | 74 | false 75 | 76 | %regex[.*] 77 | 78 | 79 | 80 | 81 | org.eclipse.tycho 82 | tycho-buildtimestamp-jgit 83 | ${tycho.extras.version} 84 | 85 | 86 | org.eclipse.tycho.extras 87 | tycho-eclipserun-plugin 88 | ${tycho.extras.version} 89 | 90 | 91 | org.eclipse.tycho.extras 92 | tycho-p2-extras-plugin 93 | ${tycho.extras.version} 94 | 95 | 96 | org.eclipse.tycho 97 | tycho-source-plugin 98 | ${tycho.version} 99 | 100 | 101 | org.eclipse.tycho 102 | tycho-p2-plugin 103 | ${tycho.version} 104 | 105 | 106 | org.eclipse.tycho.extras 107 | tycho-dependency-tools-plugin 108 | 1.7.0 109 | 110 | 111 | list-dependencies 112 | 113 | list-dependencies 114 | 115 | compile 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | org.eclipse.tycho 125 | tycho-maven-plugin 126 | true 127 | 128 | 129 | org.eclipse.tycho 130 | tycho-packaging-plugin 131 | 132 | 133 | org.eclipse.tycho 134 | tycho-buildtimestamp-jgit 135 | ${tycho.extras.version} 136 | 137 | 138 | 139 | jgit 140 | 'v'yyyyMMddHHmm 141 | 142 | pom.xml 143 | .polyglot.build.properties 144 | 145 | warning 146 | 147 | 148 | 149 | org.eclipse.tycho 150 | tycho-p2-repository-plugin 151 | 152 | true 153 | 154 | 155 | 156 | org.eclipse.tycho 157 | target-platform-configuration 158 | 159 | 160 | 161 | 162 | linux 163 | gtk 164 | x86_64 165 | 166 | 167 | win32 168 | win32 169 | x86_64 170 | 171 | 172 | macosx 173 | cocoa 174 | x86_64 175 | 176 | 177 | 178 | 179 | 180 | 181 | org.eclipse.tycho 182 | tycho-source-plugin 183 | 184 | 185 | plugin-source 186 | 187 | plugin-source 188 | 189 | 190 | 191 | feature-source 192 | package 193 | 194 | feature-source 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | org.eclipse.tycho 203 | tycho-p2-plugin 204 | ${tycho.version} 205 | 206 | 207 | attach-p2-metadata 208 | package 209 | 210 | p2-metadata 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | cleanup.add_default_serial_version_id=true 2 | cleanup.add_generated_serial_version_id=false 3 | cleanup.add_missing_annotations=true 4 | cleanup.add_missing_deprecated_annotations=true 5 | cleanup.add_missing_methods=false 6 | cleanup.add_missing_nls_tags=false 7 | cleanup.add_missing_override_annotations=true 8 | cleanup.add_missing_override_annotations_interface_methods=true 9 | cleanup.add_serial_version_id=false 10 | cleanup.always_use_blocks=true 11 | cleanup.always_use_parentheses_in_expressions=true 12 | cleanup.always_use_this_for_non_static_field_access=false 13 | cleanup.always_use_this_for_non_static_method_access=false 14 | cleanup.convert_to_enhanced_for_loop=false 15 | cleanup.correct_indentation=true 16 | cleanup.format_source_code=false 17 | cleanup.format_source_code_changes_only=false 18 | cleanup.make_local_variable_final=true 19 | cleanup.make_parameters_final=true 20 | cleanup.make_private_fields_final=true 21 | cleanup.make_type_abstract_if_missing_method=false 22 | cleanup.make_variable_declarations_final=true 23 | cleanup.never_use_blocks=false 24 | cleanup.never_use_parentheses_in_expressions=false 25 | cleanup.organize_imports=true 26 | cleanup.qualify_static_field_accesses_with_declaring_class=false 27 | cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true 28 | cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true 29 | cleanup.qualify_static_member_accesses_with_declaring_class=true 30 | cleanup.qualify_static_method_accesses_with_declaring_class=false 31 | cleanup.remove_private_constructors=true 32 | cleanup.remove_trailing_whitespaces=true 33 | cleanup.remove_trailing_whitespaces_all=true 34 | cleanup.remove_trailing_whitespaces_ignore_empty=false 35 | cleanup.remove_unnecessary_casts=true 36 | cleanup.remove_unnecessary_nls_tags=true 37 | cleanup.remove_unused_imports=true 38 | cleanup.remove_unused_local_variables=false 39 | cleanup.remove_unused_private_fields=true 40 | cleanup.remove_unused_private_members=false 41 | cleanup.remove_unused_private_methods=true 42 | cleanup.remove_unused_private_types=true 43 | cleanup.sort_members=false 44 | cleanup.sort_members_all=false 45 | cleanup.use_blocks=true 46 | cleanup.use_blocks_only_for_return_and_throw=false 47 | cleanup.use_parentheses_in_expressions=true 48 | cleanup.use_this_for_non_static_field_access=false 49 | cleanup.use_this_for_non_static_field_access_only_if_necessary=true 50 | cleanup.use_this_for_non_static_method_access=false 51 | cleanup.use_this_for_non_static_method_access_only_if_necessary=true 52 | cleanup_profile=_KNIME 53 | cleanup_settings_version=2 54 | eclipse.preferences.version=1 55 | editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true 56 | formatter_profile=_UniKN KNIME 57 | formatter_settings_version=12 58 | org.eclipse.jdt.ui.exception.name=ex 59 | org.eclipse.jdt.ui.gettersetter.use.is=true 60 | org.eclipse.jdt.ui.ignorelowercasenames=true 61 | org.eclipse.jdt.ui.importorder=java;javax;org;com; 62 | org.eclipse.jdt.ui.javadoc=true 63 | org.eclipse.jdt.ui.keywordthis=false 64 | org.eclipse.jdt.ui.ondemandthreshold=99 65 | org.eclipse.jdt.ui.overrideannotation=true 66 | org.eclipse.jdt.ui.staticondemandthreshold=99 67 | org.eclipse.jdt.ui.text.custom_code_templates= 68 | sp_cleanup.add_default_serial_version_id=true 69 | sp_cleanup.add_generated_serial_version_id=false 70 | sp_cleanup.add_missing_annotations=true 71 | sp_cleanup.add_missing_deprecated_annotations=true 72 | sp_cleanup.add_missing_methods=false 73 | sp_cleanup.add_missing_nls_tags=false 74 | sp_cleanup.add_missing_override_annotations=true 75 | sp_cleanup.add_missing_override_annotations_interface_methods=true 76 | sp_cleanup.add_serial_version_id=false 77 | sp_cleanup.always_use_blocks=true 78 | sp_cleanup.always_use_parentheses_in_expressions=false 79 | sp_cleanup.always_use_this_for_non_static_field_access=false 80 | sp_cleanup.always_use_this_for_non_static_method_access=false 81 | sp_cleanup.convert_to_enhanced_for_loop=false 82 | sp_cleanup.correct_indentation=false 83 | sp_cleanup.format_source_code=false 84 | sp_cleanup.format_source_code_changes_only=false 85 | sp_cleanup.make_local_variable_final=false 86 | sp_cleanup.make_parameters_final=true 87 | sp_cleanup.make_private_fields_final=false 88 | sp_cleanup.make_type_abstract_if_missing_method=false 89 | sp_cleanup.make_variable_declarations_final=true 90 | sp_cleanup.never_use_blocks=false 91 | sp_cleanup.never_use_parentheses_in_expressions=true 92 | sp_cleanup.on_save_use_additional_actions=true 93 | sp_cleanup.organize_imports=true 94 | sp_cleanup.qualify_static_field_accesses_with_declaring_class=false 95 | sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true 96 | sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true 97 | sp_cleanup.qualify_static_member_accesses_with_declaring_class=true 98 | sp_cleanup.qualify_static_method_accesses_with_declaring_class=false 99 | sp_cleanup.remove_private_constructors=false 100 | sp_cleanup.remove_trailing_whitespaces=true 101 | sp_cleanup.remove_trailing_whitespaces_all=true 102 | sp_cleanup.remove_trailing_whitespaces_ignore_empty=false 103 | sp_cleanup.remove_unnecessary_casts=true 104 | sp_cleanup.remove_unnecessary_nls_tags=false 105 | sp_cleanup.remove_unused_imports=true 106 | sp_cleanup.remove_unused_local_variables=false 107 | sp_cleanup.remove_unused_private_fields=false 108 | sp_cleanup.remove_unused_private_members=false 109 | sp_cleanup.remove_unused_private_methods=false 110 | sp_cleanup.remove_unused_private_types=false 111 | sp_cleanup.sort_members=false 112 | sp_cleanup.sort_members_all=false 113 | sp_cleanup.use_blocks=true 114 | sp_cleanup.use_blocks_only_for_return_and_throw=false 115 | sp_cleanup.use_parentheses_in_expressions=false 116 | sp_cleanup.use_this_for_non_static_field_access=false 117 | sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true 118 | sp_cleanup.use_this_for_non_static_method_access=false 119 | sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true 120 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | cleanup.add_default_serial_version_id=true 2 | cleanup.add_generated_serial_version_id=false 3 | cleanup.add_missing_annotations=true 4 | cleanup.add_missing_deprecated_annotations=true 5 | cleanup.add_missing_methods=false 6 | cleanup.add_missing_nls_tags=false 7 | cleanup.add_missing_override_annotations=true 8 | cleanup.add_missing_override_annotations_interface_methods=true 9 | cleanup.add_serial_version_id=false 10 | cleanup.always_use_blocks=true 11 | cleanup.always_use_parentheses_in_expressions=true 12 | cleanup.always_use_this_for_non_static_field_access=false 13 | cleanup.always_use_this_for_non_static_method_access=false 14 | cleanup.convert_to_enhanced_for_loop=false 15 | cleanup.correct_indentation=true 16 | cleanup.format_source_code=false 17 | cleanup.format_source_code_changes_only=false 18 | cleanup.make_local_variable_final=true 19 | cleanup.make_parameters_final=true 20 | cleanup.make_private_fields_final=true 21 | cleanup.make_type_abstract_if_missing_method=false 22 | cleanup.make_variable_declarations_final=true 23 | cleanup.never_use_blocks=false 24 | cleanup.never_use_parentheses_in_expressions=false 25 | cleanup.organize_imports=true 26 | cleanup.qualify_static_field_accesses_with_declaring_class=false 27 | cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true 28 | cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true 29 | cleanup.qualify_static_member_accesses_with_declaring_class=true 30 | cleanup.qualify_static_method_accesses_with_declaring_class=false 31 | cleanup.remove_private_constructors=true 32 | cleanup.remove_trailing_whitespaces=true 33 | cleanup.remove_trailing_whitespaces_all=true 34 | cleanup.remove_trailing_whitespaces_ignore_empty=false 35 | cleanup.remove_unnecessary_casts=true 36 | cleanup.remove_unnecessary_nls_tags=true 37 | cleanup.remove_unused_imports=true 38 | cleanup.remove_unused_local_variables=false 39 | cleanup.remove_unused_private_fields=true 40 | cleanup.remove_unused_private_members=false 41 | cleanup.remove_unused_private_methods=true 42 | cleanup.remove_unused_private_types=true 43 | cleanup.sort_members=false 44 | cleanup.sort_members_all=false 45 | cleanup.use_blocks=true 46 | cleanup.use_blocks_only_for_return_and_throw=false 47 | cleanup.use_parentheses_in_expressions=true 48 | cleanup.use_this_for_non_static_field_access=false 49 | cleanup.use_this_for_non_static_field_access_only_if_necessary=true 50 | cleanup.use_this_for_non_static_method_access=false 51 | cleanup.use_this_for_non_static_method_access_only_if_necessary=true 52 | cleanup_profile=_KNIME 53 | cleanup_settings_version=2 54 | eclipse.preferences.version=1 55 | editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true 56 | formatter_profile=_UniKN KNIME 57 | formatter_settings_version=12 58 | org.eclipse.jdt.ui.exception.name=ex 59 | org.eclipse.jdt.ui.gettersetter.use.is=true 60 | org.eclipse.jdt.ui.ignorelowercasenames=true 61 | org.eclipse.jdt.ui.importorder=java;javax;org;com; 62 | org.eclipse.jdt.ui.javadoc=true 63 | org.eclipse.jdt.ui.keywordthis=false 64 | org.eclipse.jdt.ui.ondemandthreshold=99 65 | org.eclipse.jdt.ui.overrideannotation=true 66 | org.eclipse.jdt.ui.staticondemandthreshold=99 67 | org.eclipse.jdt.ui.text.custom_code_templates= 68 | sp_cleanup.add_default_serial_version_id=true 69 | sp_cleanup.add_generated_serial_version_id=false 70 | sp_cleanup.add_missing_annotations=true 71 | sp_cleanup.add_missing_deprecated_annotations=true 72 | sp_cleanup.add_missing_methods=false 73 | sp_cleanup.add_missing_nls_tags=false 74 | sp_cleanup.add_missing_override_annotations=true 75 | sp_cleanup.add_missing_override_annotations_interface_methods=true 76 | sp_cleanup.add_serial_version_id=false 77 | sp_cleanup.always_use_blocks=true 78 | sp_cleanup.always_use_parentheses_in_expressions=false 79 | sp_cleanup.always_use_this_for_non_static_field_access=false 80 | sp_cleanup.always_use_this_for_non_static_method_access=false 81 | sp_cleanup.convert_to_enhanced_for_loop=false 82 | sp_cleanup.correct_indentation=false 83 | sp_cleanup.format_source_code=false 84 | sp_cleanup.format_source_code_changes_only=false 85 | sp_cleanup.make_local_variable_final=false 86 | sp_cleanup.make_parameters_final=true 87 | sp_cleanup.make_private_fields_final=false 88 | sp_cleanup.make_type_abstract_if_missing_method=false 89 | sp_cleanup.make_variable_declarations_final=true 90 | sp_cleanup.never_use_blocks=false 91 | sp_cleanup.never_use_parentheses_in_expressions=true 92 | sp_cleanup.on_save_use_additional_actions=true 93 | sp_cleanup.organize_imports=true 94 | sp_cleanup.qualify_static_field_accesses_with_declaring_class=false 95 | sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true 96 | sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true 97 | sp_cleanup.qualify_static_member_accesses_with_declaring_class=true 98 | sp_cleanup.qualify_static_method_accesses_with_declaring_class=false 99 | sp_cleanup.remove_private_constructors=false 100 | sp_cleanup.remove_trailing_whitespaces=true 101 | sp_cleanup.remove_trailing_whitespaces_all=true 102 | sp_cleanup.remove_trailing_whitespaces_ignore_empty=false 103 | sp_cleanup.remove_unnecessary_casts=true 104 | sp_cleanup.remove_unnecessary_nls_tags=false 105 | sp_cleanup.remove_unused_imports=true 106 | sp_cleanup.remove_unused_local_variables=false 107 | sp_cleanup.remove_unused_private_fields=false 108 | sp_cleanup.remove_unused_private_members=false 109 | sp_cleanup.remove_unused_private_methods=false 110 | sp_cleanup.remove_unused_private_types=false 111 | sp_cleanup.sort_members=false 112 | sp_cleanup.sort_members_all=false 113 | sp_cleanup.use_blocks=true 114 | sp_cleanup.use_blocks_only_for_return_and_throw=false 115 | sp_cleanup.use_parentheses_in_expressions=false 116 | sp_cleanup.use_this_for_non_static_field_access=false 117 | sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true 118 | sp_cleanup.use_this_for_non_static_method_access=false 119 | sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true 120 | -------------------------------------------------------------------------------- /org.knime.examples.minimal/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.codeComplete.argumentPrefixes= 3 | org.eclipse.jdt.core.codeComplete.argumentSuffixes= 4 | org.eclipse.jdt.core.codeComplete.fieldPrefixes=m_ 5 | org.eclipse.jdt.core.codeComplete.fieldSuffixes= 6 | org.eclipse.jdt.core.codeComplete.localPrefixes= 7 | org.eclipse.jdt.core.codeComplete.localSuffixes= 8 | org.eclipse.jdt.core.codeComplete.staticFieldPrefixes= 9 | org.eclipse.jdt.core.codeComplete.staticFieldSuffixes= 10 | org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes= 11 | org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes= 12 | org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=disabled 13 | org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore 14 | org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull 15 | org.eclipse.jdt.core.compiler.annotation.nonnull.secondary= 16 | org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault 17 | org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary= 18 | org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable 19 | org.eclipse.jdt.core.compiler.annotation.nullable.secondary= 20 | org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled 21 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 22 | org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate 23 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 24 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 25 | org.eclipse.jdt.core.compiler.compliance=17 26 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 27 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 28 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 29 | org.eclipse.jdt.core.compiler.doc.comment.support=enabled 30 | org.eclipse.jdt.core.compiler.problem.APILeak=warning 31 | org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning 32 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 33 | org.eclipse.jdt.core.compiler.problem.autoboxing=ignore 34 | org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning 35 | org.eclipse.jdt.core.compiler.problem.deadCode=warning 36 | org.eclipse.jdt.core.compiler.problem.deprecation=warning 37 | org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled 38 | org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=enabled 39 | org.eclipse.jdt.core.compiler.problem.discouragedReference=warning 40 | org.eclipse.jdt.core.compiler.problem.emptyStatement=warning 41 | org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled 42 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 43 | org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=warning 44 | org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore 45 | org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled 46 | org.eclipse.jdt.core.compiler.problem.fieldHiding=warning 47 | org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning 48 | org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning 49 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=error 50 | org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning 51 | org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled 52 | org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning 53 | org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning 54 | org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=warning 55 | org.eclipse.jdt.core.compiler.problem.invalidJavadoc=warning 56 | org.eclipse.jdt.core.compiler.problem.invalidJavadocTags=enabled 57 | org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef=disabled 58 | org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef=enabled 59 | org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=protected 60 | org.eclipse.jdt.core.compiler.problem.localVariableHiding=warning 61 | org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning 62 | org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore 63 | org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=warning 64 | org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled 65 | org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=warning 66 | org.eclipse.jdt.core.compiler.problem.missingJavadocComments=warning 67 | org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=disabled 68 | org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=protected 69 | org.eclipse.jdt.core.compiler.problem.missingJavadocTagDescription=return_tag 70 | org.eclipse.jdt.core.compiler.problem.missingJavadocTags=warning 71 | org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled 72 | org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=protected 73 | org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning 74 | org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled 75 | org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning 76 | org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=warning 77 | org.eclipse.jdt.core.compiler.problem.noEffectAssignment=error 78 | org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning 79 | org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore 80 | org.eclipse.jdt.core.compiler.problem.nonnullParameterAnnotationDropped=warning 81 | org.eclipse.jdt.core.compiler.problem.nonnullTypeVariableFromLegacyInvocation=warning 82 | org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error 83 | org.eclipse.jdt.core.compiler.problem.nullReference=warning 84 | org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error 85 | org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning 86 | org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning 87 | org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore 88 | org.eclipse.jdt.core.compiler.problem.pessimisticNullAnalysisForFreeTypeVariables=warning 89 | org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=warning 90 | org.eclipse.jdt.core.compiler.problem.potentialNullReference=warning 91 | org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=warning 92 | org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning 93 | org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning 94 | org.eclipse.jdt.core.compiler.problem.redundantNullCheck=warning 95 | org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=ignore 96 | org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=warning 97 | org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore 98 | org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=warning 99 | org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning 100 | org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=enabled 101 | org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning 102 | org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled 103 | org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled 104 | org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=disabled 105 | org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore 106 | org.eclipse.jdt.core.compiler.problem.terminalDeprecation=warning 107 | org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning 108 | org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=enabled 109 | org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning 110 | org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning 111 | org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore 112 | org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning 113 | org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentType=warning 114 | org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentTypeStrict=disabled 115 | org.eclipse.jdt.core.compiler.problem.unlikelyEqualsArgumentType=info 116 | org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore 117 | org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=warning 118 | org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore 119 | org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore 120 | org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled 121 | org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled 122 | org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=enabled 123 | org.eclipse.jdt.core.compiler.problem.unusedExceptionParameter=ignore 124 | org.eclipse.jdt.core.compiler.problem.unusedImport=warning 125 | org.eclipse.jdt.core.compiler.problem.unusedLabel=warning 126 | org.eclipse.jdt.core.compiler.problem.unusedLocal=warning 127 | org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=warning 128 | org.eclipse.jdt.core.compiler.problem.unusedParameter=warning 129 | org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled 130 | org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled 131 | org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled 132 | org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning 133 | org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=warning 134 | org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning 135 | org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning 136 | org.eclipse.jdt.core.compiler.release=enabled 137 | org.eclipse.jdt.core.compiler.source=17 138 | org.eclipse.jdt.core.formatter.align_type_members_on_columns=false 139 | org.eclipse.jdt.core.formatter.alignment_for_additive_operator=20 140 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=20 141 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=20 142 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=20 143 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=20 144 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=20 145 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=20 146 | org.eclipse.jdt.core.formatter.alignment_for_assignment=20 147 | org.eclipse.jdt.core.formatter.alignment_for_bitwise_operator=20 148 | org.eclipse.jdt.core.formatter.alignment_for_compact_if=16 149 | org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=20 150 | org.eclipse.jdt.core.formatter.alignment_for_enum_constants=20 151 | org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=20 152 | org.eclipse.jdt.core.formatter.alignment_for_logical_operator=20 153 | org.eclipse.jdt.core.formatter.alignment_for_method_declaration=20 154 | org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16 155 | org.eclipse.jdt.core.formatter.alignment_for_multiplicative_operator=20 156 | org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=20 157 | org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=20 158 | org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80 159 | org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=20 160 | org.eclipse.jdt.core.formatter.alignment_for_string_concatenation=20 161 | org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=20 162 | org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=20 163 | org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=20 164 | org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=20 165 | org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=20 166 | org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch=16 167 | org.eclipse.jdt.core.formatter.blank_lines_after_imports=1 168 | org.eclipse.jdt.core.formatter.blank_lines_after_package=1 169 | org.eclipse.jdt.core.formatter.blank_lines_before_field=1 170 | org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0 171 | org.eclipse.jdt.core.formatter.blank_lines_before_imports=1 172 | org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1 173 | org.eclipse.jdt.core.formatter.blank_lines_before_method=1 174 | org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1 175 | org.eclipse.jdt.core.formatter.blank_lines_before_package=0 176 | org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1 177 | org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1 178 | org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line 179 | org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line 180 | org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line 181 | org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line 182 | org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line 183 | org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line 184 | org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line 185 | org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line 186 | org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line 187 | org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line 188 | org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line 189 | org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=true 190 | org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false 191 | org.eclipse.jdt.core.formatter.comment.format_block_comments=false 192 | org.eclipse.jdt.core.formatter.comment.format_header=false 193 | org.eclipse.jdt.core.formatter.comment.format_html=true 194 | org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true 195 | org.eclipse.jdt.core.formatter.comment.format_line_comments=false 196 | org.eclipse.jdt.core.formatter.comment.format_source_code=true 197 | org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true 198 | org.eclipse.jdt.core.formatter.comment.indent_root_tags=true 199 | org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert 200 | org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=do not insert 201 | org.eclipse.jdt.core.formatter.comment.line_length=120 202 | org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true 203 | org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true 204 | org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments=false 205 | org.eclipse.jdt.core.formatter.compact_else_if=true 206 | org.eclipse.jdt.core.formatter.continuation_indentation=2 207 | org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2 208 | org.eclipse.jdt.core.formatter.disabling_tag=@formatter\:off 209 | org.eclipse.jdt.core.formatter.enabling_tag=@formatter\:on 210 | org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false 211 | org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column=true 212 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true 213 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true 214 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true 215 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true 216 | org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true 217 | org.eclipse.jdt.core.formatter.indent_empty_lines=false 218 | org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true 219 | org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true 220 | org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true 221 | org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true 222 | org.eclipse.jdt.core.formatter.indentation.size=4 223 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert 224 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert 225 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert 226 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert 227 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert 228 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert 229 | org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert 230 | org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert 231 | org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert 232 | org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert 233 | org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert 234 | org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert 235 | org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert 236 | org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert 237 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert 238 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert 239 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert 240 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert 241 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert 242 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert 243 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert 244 | org.eclipse.jdt.core.formatter.insert_space_after_additive_operator=insert 245 | org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert 246 | org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert 247 | org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert 248 | org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert 249 | org.eclipse.jdt.core.formatter.insert_space_after_bitwise_operator=insert 250 | org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert 251 | org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert 252 | org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert 253 | org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=do not insert 254 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert 255 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert 256 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert 257 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert 258 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert 259 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert 260 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert 261 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert 262 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert 263 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert 264 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert 265 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert 266 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert 267 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert 268 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert 269 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert 270 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert 271 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert 272 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert 273 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert 274 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert 275 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert 276 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert 277 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert 278 | org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert 279 | org.eclipse.jdt.core.formatter.insert_space_after_logical_operator=insert 280 | org.eclipse.jdt.core.formatter.insert_space_after_multiplicative_operator=insert 281 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert 282 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert 283 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert 284 | org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=do not insert 285 | org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert 286 | org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert 287 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert 288 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert 289 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert 290 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert 291 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert 292 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert 293 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert 294 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert 295 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert 296 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert 297 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert 298 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert 299 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try=do not insert 300 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert 301 | org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert 302 | org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert 303 | org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert 304 | org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert 305 | org.eclipse.jdt.core.formatter.insert_space_after_relational_operator=insert 306 | org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert 307 | org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert 308 | org.eclipse.jdt.core.formatter.insert_space_after_shift_operator=insert 309 | org.eclipse.jdt.core.formatter.insert_space_after_string_concatenation=insert 310 | org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert 311 | org.eclipse.jdt.core.formatter.insert_space_before_additive_operator=insert 312 | org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert 313 | org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert 314 | org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert 315 | org.eclipse.jdt.core.formatter.insert_space_before_bitwise_operator=insert 316 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert 317 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert 318 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert 319 | org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=do not insert 320 | org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert 321 | org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert 322 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert 323 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert 324 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert 325 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert 326 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert 327 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert 328 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert 329 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert 330 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert 331 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert 332 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert 333 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert 334 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try=do not insert 335 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert 336 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert 337 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert 338 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert 339 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert 340 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert 341 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert 342 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert 343 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert 344 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert 345 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert 346 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert 347 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert 348 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert 349 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert 350 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert 351 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert 352 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert 353 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert 354 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert 355 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert 356 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert 357 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert 358 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert 359 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert 360 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert 361 | org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert 362 | org.eclipse.jdt.core.formatter.insert_space_before_logical_operator=insert 363 | org.eclipse.jdt.core.formatter.insert_space_before_multiplicative_operator=insert 364 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert 365 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert 366 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert 367 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert 368 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert 369 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=do not insert 370 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert 371 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert 372 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert 373 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert 374 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert 375 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert 376 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert 377 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert 378 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert 379 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert 380 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert 381 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert 382 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert 383 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert 384 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert 385 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert 386 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert 387 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert 388 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert 389 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert 390 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert 391 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert 392 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try=insert 393 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert 394 | org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert 395 | org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert 396 | org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert 397 | org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert 398 | org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert 399 | org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert 400 | org.eclipse.jdt.core.formatter.insert_space_before_relational_operator=insert 401 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert 402 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert 403 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do not insert 404 | org.eclipse.jdt.core.formatter.insert_space_before_shift_operator=insert 405 | org.eclipse.jdt.core.formatter.insert_space_before_string_concatenation=insert 406 | org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert 407 | org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert 408 | org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert 409 | org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert 410 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert 411 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert 412 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert 413 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert 414 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert 415 | org.eclipse.jdt.core.formatter.join_lines_in_comments=true 416 | org.eclipse.jdt.core.formatter.join_wrapped_lines=true 417 | org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false 418 | org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false 419 | org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false 420 | org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false 421 | org.eclipse.jdt.core.formatter.lineSplit=120 422 | org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false 423 | org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false 424 | org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0 425 | org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1 426 | org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true 427 | org.eclipse.jdt.core.formatter.tabulation.char=space 428 | org.eclipse.jdt.core.formatter.tabulation.size=4 429 | org.eclipse.jdt.core.formatter.use_on_off_tags=false 430 | org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false 431 | org.eclipse.jdt.core.formatter.wrap_before_additive_operator=true 432 | org.eclipse.jdt.core.formatter.wrap_before_bitwise_operator=true 433 | org.eclipse.jdt.core.formatter.wrap_before_logical_operator=true 434 | org.eclipse.jdt.core.formatter.wrap_before_multiplicative_operator=true 435 | org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true 436 | org.eclipse.jdt.core.formatter.wrap_before_string_concatenation=true 437 | org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=true 438 | -------------------------------------------------------------------------------- /org.knime.examples.unitconverter/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.codeComplete.argumentPrefixes= 3 | org.eclipse.jdt.core.codeComplete.argumentSuffixes= 4 | org.eclipse.jdt.core.codeComplete.fieldPrefixes=m_ 5 | org.eclipse.jdt.core.codeComplete.fieldSuffixes= 6 | org.eclipse.jdt.core.codeComplete.localPrefixes= 7 | org.eclipse.jdt.core.codeComplete.localSuffixes= 8 | org.eclipse.jdt.core.codeComplete.staticFieldPrefixes= 9 | org.eclipse.jdt.core.codeComplete.staticFieldSuffixes= 10 | org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes= 11 | org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes= 12 | org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=disabled 13 | org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore 14 | org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull 15 | org.eclipse.jdt.core.compiler.annotation.nonnull.secondary= 16 | org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault 17 | org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary= 18 | org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable 19 | org.eclipse.jdt.core.compiler.annotation.nullable.secondary= 20 | org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled 21 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 22 | org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate 23 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 24 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 25 | org.eclipse.jdt.core.compiler.compliance=17 26 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 27 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 28 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 29 | org.eclipse.jdt.core.compiler.doc.comment.support=enabled 30 | org.eclipse.jdt.core.compiler.problem.APILeak=warning 31 | org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning 32 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 33 | org.eclipse.jdt.core.compiler.problem.autoboxing=ignore 34 | org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning 35 | org.eclipse.jdt.core.compiler.problem.deadCode=warning 36 | org.eclipse.jdt.core.compiler.problem.deprecation=warning 37 | org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled 38 | org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=enabled 39 | org.eclipse.jdt.core.compiler.problem.discouragedReference=warning 40 | org.eclipse.jdt.core.compiler.problem.emptyStatement=warning 41 | org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled 42 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 43 | org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=warning 44 | org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore 45 | org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled 46 | org.eclipse.jdt.core.compiler.problem.fieldHiding=warning 47 | org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning 48 | org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning 49 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=error 50 | org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning 51 | org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled 52 | org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning 53 | org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning 54 | org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=warning 55 | org.eclipse.jdt.core.compiler.problem.invalidJavadoc=warning 56 | org.eclipse.jdt.core.compiler.problem.invalidJavadocTags=enabled 57 | org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef=disabled 58 | org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef=enabled 59 | org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=protected 60 | org.eclipse.jdt.core.compiler.problem.localVariableHiding=warning 61 | org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning 62 | org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore 63 | org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=warning 64 | org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled 65 | org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=warning 66 | org.eclipse.jdt.core.compiler.problem.missingJavadocComments=warning 67 | org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=disabled 68 | org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=protected 69 | org.eclipse.jdt.core.compiler.problem.missingJavadocTagDescription=return_tag 70 | org.eclipse.jdt.core.compiler.problem.missingJavadocTags=warning 71 | org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled 72 | org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=protected 73 | org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning 74 | org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled 75 | org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning 76 | org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=warning 77 | org.eclipse.jdt.core.compiler.problem.noEffectAssignment=error 78 | org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning 79 | org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore 80 | org.eclipse.jdt.core.compiler.problem.nonnullParameterAnnotationDropped=warning 81 | org.eclipse.jdt.core.compiler.problem.nonnullTypeVariableFromLegacyInvocation=warning 82 | org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error 83 | org.eclipse.jdt.core.compiler.problem.nullReference=warning 84 | org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error 85 | org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning 86 | org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning 87 | org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore 88 | org.eclipse.jdt.core.compiler.problem.pessimisticNullAnalysisForFreeTypeVariables=warning 89 | org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=warning 90 | org.eclipse.jdt.core.compiler.problem.potentialNullReference=warning 91 | org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=warning 92 | org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning 93 | org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning 94 | org.eclipse.jdt.core.compiler.problem.redundantNullCheck=warning 95 | org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=ignore 96 | org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=warning 97 | org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore 98 | org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=warning 99 | org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning 100 | org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=enabled 101 | org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning 102 | org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled 103 | org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled 104 | org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=disabled 105 | org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore 106 | org.eclipse.jdt.core.compiler.problem.terminalDeprecation=warning 107 | org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning 108 | org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=enabled 109 | org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning 110 | org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning 111 | org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore 112 | org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning 113 | org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentType=warning 114 | org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentTypeStrict=disabled 115 | org.eclipse.jdt.core.compiler.problem.unlikelyEqualsArgumentType=info 116 | org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore 117 | org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=warning 118 | org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore 119 | org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore 120 | org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled 121 | org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled 122 | org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=enabled 123 | org.eclipse.jdt.core.compiler.problem.unusedExceptionParameter=ignore 124 | org.eclipse.jdt.core.compiler.problem.unusedImport=warning 125 | org.eclipse.jdt.core.compiler.problem.unusedLabel=warning 126 | org.eclipse.jdt.core.compiler.problem.unusedLocal=warning 127 | org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=warning 128 | org.eclipse.jdt.core.compiler.problem.unusedParameter=warning 129 | org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled 130 | org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled 131 | org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled 132 | org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning 133 | org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=warning 134 | org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning 135 | org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning 136 | org.eclipse.jdt.core.compiler.release=enabled 137 | org.eclipse.jdt.core.compiler.source=17 138 | org.eclipse.jdt.core.formatter.align_type_members_on_columns=false 139 | org.eclipse.jdt.core.formatter.alignment_for_additive_operator=20 140 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=20 141 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=20 142 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=20 143 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=20 144 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=20 145 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=20 146 | org.eclipse.jdt.core.formatter.alignment_for_assignment=20 147 | org.eclipse.jdt.core.formatter.alignment_for_bitwise_operator=20 148 | org.eclipse.jdt.core.formatter.alignment_for_compact_if=16 149 | org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=20 150 | org.eclipse.jdt.core.formatter.alignment_for_enum_constants=20 151 | org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=20 152 | org.eclipse.jdt.core.formatter.alignment_for_logical_operator=20 153 | org.eclipse.jdt.core.formatter.alignment_for_method_declaration=20 154 | org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16 155 | org.eclipse.jdt.core.formatter.alignment_for_multiplicative_operator=20 156 | org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=20 157 | org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=20 158 | org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80 159 | org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=20 160 | org.eclipse.jdt.core.formatter.alignment_for_string_concatenation=20 161 | org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=20 162 | org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=20 163 | org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=20 164 | org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=20 165 | org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=20 166 | org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch=16 167 | org.eclipse.jdt.core.formatter.blank_lines_after_imports=1 168 | org.eclipse.jdt.core.formatter.blank_lines_after_package=1 169 | org.eclipse.jdt.core.formatter.blank_lines_before_field=1 170 | org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0 171 | org.eclipse.jdt.core.formatter.blank_lines_before_imports=1 172 | org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1 173 | org.eclipse.jdt.core.formatter.blank_lines_before_method=1 174 | org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1 175 | org.eclipse.jdt.core.formatter.blank_lines_before_package=0 176 | org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1 177 | org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1 178 | org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line 179 | org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line 180 | org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line 181 | org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line 182 | org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line 183 | org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line 184 | org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line 185 | org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line 186 | org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line 187 | org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line 188 | org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line 189 | org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=true 190 | org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false 191 | org.eclipse.jdt.core.formatter.comment.format_block_comments=false 192 | org.eclipse.jdt.core.formatter.comment.format_header=false 193 | org.eclipse.jdt.core.formatter.comment.format_html=true 194 | org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true 195 | org.eclipse.jdt.core.formatter.comment.format_line_comments=false 196 | org.eclipse.jdt.core.formatter.comment.format_source_code=true 197 | org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true 198 | org.eclipse.jdt.core.formatter.comment.indent_root_tags=true 199 | org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert 200 | org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=do not insert 201 | org.eclipse.jdt.core.formatter.comment.line_length=120 202 | org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true 203 | org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true 204 | org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments=false 205 | org.eclipse.jdt.core.formatter.compact_else_if=true 206 | org.eclipse.jdt.core.formatter.continuation_indentation=2 207 | org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2 208 | org.eclipse.jdt.core.formatter.disabling_tag=@formatter\:off 209 | org.eclipse.jdt.core.formatter.enabling_tag=@formatter\:on 210 | org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false 211 | org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column=true 212 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true 213 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true 214 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true 215 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true 216 | org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true 217 | org.eclipse.jdt.core.formatter.indent_empty_lines=false 218 | org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true 219 | org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true 220 | org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true 221 | org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true 222 | org.eclipse.jdt.core.formatter.indentation.size=4 223 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert 224 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert 225 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert 226 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert 227 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert 228 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert 229 | org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert 230 | org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert 231 | org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert 232 | org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert 233 | org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert 234 | org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert 235 | org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert 236 | org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert 237 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert 238 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert 239 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert 240 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert 241 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert 242 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert 243 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert 244 | org.eclipse.jdt.core.formatter.insert_space_after_additive_operator=insert 245 | org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert 246 | org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert 247 | org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert 248 | org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert 249 | org.eclipse.jdt.core.formatter.insert_space_after_bitwise_operator=insert 250 | org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert 251 | org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert 252 | org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert 253 | org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=do not insert 254 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert 255 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert 256 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert 257 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert 258 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert 259 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert 260 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert 261 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert 262 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert 263 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert 264 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert 265 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert 266 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert 267 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert 268 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert 269 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert 270 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert 271 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert 272 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert 273 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert 274 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert 275 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert 276 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert 277 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert 278 | org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert 279 | org.eclipse.jdt.core.formatter.insert_space_after_logical_operator=insert 280 | org.eclipse.jdt.core.formatter.insert_space_after_multiplicative_operator=insert 281 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert 282 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert 283 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert 284 | org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=do not insert 285 | org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert 286 | org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert 287 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert 288 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert 289 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert 290 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert 291 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert 292 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert 293 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert 294 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert 295 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert 296 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert 297 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert 298 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert 299 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try=do not insert 300 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert 301 | org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert 302 | org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert 303 | org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert 304 | org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert 305 | org.eclipse.jdt.core.formatter.insert_space_after_relational_operator=insert 306 | org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert 307 | org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert 308 | org.eclipse.jdt.core.formatter.insert_space_after_shift_operator=insert 309 | org.eclipse.jdt.core.formatter.insert_space_after_string_concatenation=insert 310 | org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert 311 | org.eclipse.jdt.core.formatter.insert_space_before_additive_operator=insert 312 | org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert 313 | org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert 314 | org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert 315 | org.eclipse.jdt.core.formatter.insert_space_before_bitwise_operator=insert 316 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert 317 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert 318 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert 319 | org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=do not insert 320 | org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert 321 | org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert 322 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert 323 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert 324 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert 325 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert 326 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert 327 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert 328 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert 329 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert 330 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert 331 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert 332 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert 333 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert 334 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try=do not insert 335 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert 336 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert 337 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert 338 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert 339 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert 340 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert 341 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert 342 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert 343 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert 344 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert 345 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert 346 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert 347 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert 348 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert 349 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert 350 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert 351 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert 352 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert 353 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert 354 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert 355 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert 356 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert 357 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert 358 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert 359 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert 360 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert 361 | org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert 362 | org.eclipse.jdt.core.formatter.insert_space_before_logical_operator=insert 363 | org.eclipse.jdt.core.formatter.insert_space_before_multiplicative_operator=insert 364 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert 365 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert 366 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert 367 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert 368 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert 369 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=do not insert 370 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert 371 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert 372 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert 373 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert 374 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert 375 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert 376 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert 377 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert 378 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert 379 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert 380 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert 381 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert 382 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert 383 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert 384 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert 385 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert 386 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert 387 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert 388 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert 389 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert 390 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert 391 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert 392 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try=insert 393 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert 394 | org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert 395 | org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert 396 | org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert 397 | org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert 398 | org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert 399 | org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert 400 | org.eclipse.jdt.core.formatter.insert_space_before_relational_operator=insert 401 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert 402 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert 403 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do not insert 404 | org.eclipse.jdt.core.formatter.insert_space_before_shift_operator=insert 405 | org.eclipse.jdt.core.formatter.insert_space_before_string_concatenation=insert 406 | org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert 407 | org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert 408 | org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert 409 | org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert 410 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert 411 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert 412 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert 413 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert 414 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert 415 | org.eclipse.jdt.core.formatter.join_lines_in_comments=true 416 | org.eclipse.jdt.core.formatter.join_wrapped_lines=true 417 | org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false 418 | org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false 419 | org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false 420 | org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false 421 | org.eclipse.jdt.core.formatter.lineSplit=120 422 | org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false 423 | org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false 424 | org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0 425 | org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1 426 | org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true 427 | org.eclipse.jdt.core.formatter.tabulation.char=space 428 | org.eclipse.jdt.core.formatter.tabulation.size=4 429 | org.eclipse.jdt.core.formatter.use_on_off_tags=false 430 | org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false 431 | org.eclipse.jdt.core.formatter.wrap_before_additive_operator=true 432 | org.eclipse.jdt.core.formatter.wrap_before_bitwise_operator=true 433 | org.eclipse.jdt.core.formatter.wrap_before_logical_operator=true 434 | org.eclipse.jdt.core.formatter.wrap_before_multiplicative_operator=true 435 | org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true 436 | org.eclipse.jdt.core.formatter.wrap_before_string_concatenation=true 437 | org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=true 438 | -------------------------------------------------------------------------------- /python/LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | Please see below the General Public License (GPL), Version 3, 3 | and the Additional Permissions according to Sec. 7 4 | applying to the files in this folder: 5 | 6 | *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 7 | 8 | GNU GENERAL PUBLIC LICENSE 9 | Version 3, 29 June 2007 10 | 11 | Copyright (C) 2007 Free Software Foundation, Inc. 12 | Everyone is permitted to copy and distribute verbatim copies 13 | of this license document, but changing it is not allowed. 14 | 15 | Preamble 16 | 17 | The GNU General Public License is a free, copyleft license for 18 | software and other kinds of works. 19 | 20 | The licenses for most software and other practical works are designed 21 | to take away your freedom to share and change the works. By contrast, 22 | the GNU General Public License is intended to guarantee your freedom to 23 | share and change all versions of a program--to make sure it remains free 24 | software for all its users. We, the Free Software Foundation, use the 25 | GNU General Public License for most of our software; it applies also to 26 | any other work released this way by its authors. You can apply it to 27 | your programs, too. 28 | 29 | When we speak of free software, we are referring to freedom, not 30 | price. Our General Public Licenses are designed to make sure that you 31 | have the freedom to distribute copies of free software (and charge for 32 | them if you wish), that you receive source code or can get it if you 33 | want it, that you can change the software or use pieces of it in new 34 | free programs, and that you know you can do these things. 35 | 36 | To protect your rights, we need to prevent others from denying you 37 | these rights or asking you to surrender the rights. Therefore, you have 38 | certain responsibilities if you distribute copies of the software, or if 39 | you modify it: responsibilities to respect the freedom of others. 40 | 41 | For example, if you distribute copies of such a program, whether 42 | gratis or for a fee, you must pass on to the recipients the same 43 | freedoms that you received. You must make sure that they, too, receive 44 | or can get the source code. And you must show them these terms so they 45 | know their rights. 46 | 47 | Developers that use the GNU GPL protect your rights with two steps: 48 | (1) assert copyright on the software, and (2) offer you this License 49 | giving you legal permission to copy, distribute and/or modify it. 50 | 51 | For the developers' and authors' protection, the GPL clearly explains 52 | that there is no warranty for this free software. For both users' and 53 | authors' sake, the GPL requires that modified versions be marked as 54 | changed, so that their problems will not be attributed erroneously to 55 | authors of previous versions. 56 | 57 | Some devices are designed to deny users access to install or run 58 | modified versions of the software inside them, although the manufacturer 59 | can do so. This is fundamentally incompatible with the aim of 60 | protecting users' freedom to change the software. The systematic 61 | pattern of such abuse occurs in the area of products for individuals to 62 | use, which is precisely where it is most unacceptable. Therefore, we 63 | have designed this version of the GPL to prohibit the practice for those 64 | products. If such problems arise substantially in other domains, we 65 | stand ready to extend this provision to those domains in future versions 66 | of the GPL, as needed to protect the freedom of users. 67 | 68 | Finally, every program is threatened constantly by software patents. 69 | States should not allow patents to restrict development and use of 70 | software on general-purpose computers, but in those that do, we wish to 71 | avoid the special danger that patents applied to a free program could 72 | make it effectively proprietary. To prevent this, the GPL assures that 73 | patents cannot be used to render the program non-free. 74 | 75 | The precise terms and conditions for copying, distribution and 76 | modification follow. 77 | 78 | TERMS AND CONDITIONS 79 | 80 | 0. Definitions. 81 | 82 | "This License" refers to version 3 of the GNU General Public License. 83 | 84 | "Copyright" also means copyright-like laws that apply to other kinds of 85 | works, such as semiconductor masks. 86 | 87 | "The Program" refers to any copyrightable work licensed under this 88 | License. Each licensee is addressed as "you". "Licensees" and 89 | "recipients" may be individuals or organizations. 90 | 91 | To "modify" a work means to copy from or adapt all or part of the work 92 | in a fashion requiring copyright permission, other than the making of an 93 | exact copy. The resulting work is called a "modified version" of the 94 | earlier work or a work "based on" the earlier work. 95 | 96 | A "covered work" means either the unmodified Program or a work based 97 | on the Program. 98 | 99 | To "propagate" a work means to do anything with it that, without 100 | permission, would make you directly or secondarily liable for 101 | infringement under applicable copyright law, except executing it on a 102 | computer or modifying a private copy. Propagation includes copying, 103 | distribution (with or without modification), making available to the 104 | public, and in some countries other activities as well. 105 | 106 | To "convey" a work means any kind of propagation that enables other 107 | parties to make or receive copies. Mere interaction with a user through 108 | a computer network, with no transfer of a copy, is not conveying. 109 | 110 | An interactive user interface displays "Appropriate Legal Notices" 111 | to the extent that it includes a convenient and prominently visible 112 | feature that (1) displays an appropriate copyright notice, and (2) 113 | tells the user that there is no warranty for the work (except to the 114 | extent that warranties are provided), that licensees may convey the 115 | work under this License, and how to view a copy of this License. If 116 | the interface presents a list of user commands or options, such as a 117 | menu, a prominent item in the list meets this criterion. 118 | 119 | 1. Source Code. 120 | 121 | The "source code" for a work means the preferred form of the work 122 | for making modifications to it. "Object code" means any non-source 123 | form of a work. 124 | 125 | A "Standard Interface" means an interface that either is an official 126 | standard defined by a recognized standards body, or, in the case of 127 | interfaces specified for a particular programming language, one that 128 | is widely used among developers working in that language. 129 | 130 | The "System Libraries" of an executable work include anything, other 131 | than the work as a whole, that (a) is included in the normal form of 132 | packaging a Major Component, but which is not part of that Major 133 | Component, and (b) serves only to enable use of the work with that 134 | Major Component, or to implement a Standard Interface for which an 135 | implementation is available to the public in source code form. A 136 | "Major Component", in this context, means a major essential component 137 | (kernel, window system, and so on) of the specific operating system 138 | (if any) on which the executable work runs, or a compiler used to 139 | produce the work, or an object code interpreter used to run it. 140 | 141 | The "Corresponding Source" for a work in object code form means all 142 | the source code needed to generate, install, and (for an executable 143 | work) run the object code and to modify the work, including scripts to 144 | control those activities. However, it does not include the work's 145 | System Libraries, or general-purpose tools or generally available free 146 | programs which are used unmodified in performing those activities but 147 | which are not part of the work. For example, Corresponding Source 148 | includes interface definition files associated with source files for 149 | the work, and the source code for shared libraries and dynamically 150 | linked subprograms that the work is specifically designed to require, 151 | such as by intimate data communication or control flow between those 152 | subprograms and other parts of the work. 153 | 154 | The Corresponding Source need not include anything that users 155 | can regenerate automatically from other parts of the Corresponding 156 | Source. 157 | 158 | The Corresponding Source for a work in source code form is that 159 | same work. 160 | 161 | 2. Basic Permissions. 162 | 163 | All rights granted under this License are granted for the term of 164 | copyright on the Program, and are irrevocable provided the stated 165 | conditions are met. This License explicitly affirms your unlimited 166 | permission to run the unmodified Program. The output from running a 167 | covered work is covered by this License only if the output, given its 168 | content, constitutes a covered work. This License acknowledges your 169 | rights of fair use or other equivalent, as provided by copyright law. 170 | 171 | You may make, run and propagate covered works that you do not 172 | convey, without conditions so long as your license otherwise remains 173 | in force. You may convey covered works to others for the sole purpose 174 | of having them make modifications exclusively for you, or provide you 175 | with facilities for running those works, provided that you comply with 176 | the terms of this License in conveying all material for which you do 177 | not control copyright. Those thus making or running the covered works 178 | for you must do so exclusively on your behalf, under your direction 179 | and control, on terms that prohibit them from making any copies of 180 | your copyrighted material outside their relationship with you. 181 | 182 | Conveying under any other circumstances is permitted solely under 183 | the conditions stated below. Sublicensing is not allowed; section 10 184 | makes it unnecessary. 185 | 186 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 187 | 188 | No covered work shall be deemed part of an effective technological 189 | measure under any applicable law fulfilling obligations under article 190 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 191 | similar laws prohibiting or restricting circumvention of such 192 | measures. 193 | 194 | When you convey a covered work, you waive any legal power to forbid 195 | circumvention of technological measures to the extent such circumvention 196 | is effected by exercising rights under this License with respect to 197 | the covered work, and you disclaim any intention to limit operation or 198 | modification of the work as a means of enforcing, against the work's 199 | users, your or third parties' legal rights to forbid circumvention of 200 | technological measures. 201 | 202 | 4. Conveying Verbatim Copies. 203 | 204 | You may convey verbatim copies of the Program's source code as you 205 | receive it, in any medium, provided that you conspicuously and 206 | appropriately publish on each copy an appropriate copyright notice; 207 | keep intact all notices stating that this License and any 208 | non-permissive terms added in accord with section 7 apply to the code; 209 | keep intact all notices of the absence of any warranty; and give all 210 | recipients a copy of this License along with the Program. 211 | 212 | You may charge any price or no price for each copy that you convey, 213 | and you may offer support or warranty protection for a fee. 214 | 215 | 5. Conveying Modified Source Versions. 216 | 217 | You may convey a work based on the Program, or the modifications to 218 | produce it from the Program, in the form of source code under the 219 | terms of section 4, provided that you also meet all of these conditions: 220 | 221 | a) The work must carry prominent notices stating that you modified 222 | it, and giving a relevant date. 223 | 224 | b) The work must carry prominent notices stating that it is 225 | released under this License and any conditions added under section 226 | 7. This requirement modifies the requirement in section 4 to 227 | "keep intact all notices". 228 | 229 | c) You must license the entire work, as a whole, under this 230 | License to anyone who comes into possession of a copy. This 231 | License will therefore apply, along with any applicable section 7 232 | additional terms, to the whole of the work, and all its parts, 233 | regardless of how they are packaged. This License gives no 234 | permission to license the work in any other way, but it does not 235 | invalidate such permission if you have separately received it. 236 | 237 | d) If the work has interactive user interfaces, each must display 238 | Appropriate Legal Notices; however, if the Program has interactive 239 | interfaces that do not display Appropriate Legal Notices, your 240 | work need not make them do so. 241 | 242 | A compilation of a covered work with other separate and independent 243 | works, which are not by their nature extensions of the covered work, 244 | and which are not combined with it such as to form a larger program, 245 | in or on a volume of a storage or distribution medium, is called an 246 | "aggregate" if the compilation and its resulting copyright are not 247 | used to limit the access or legal rights of the compilation's users 248 | beyond what the individual works permit. Inclusion of a covered work 249 | in an aggregate does not cause this License to apply to the other 250 | parts of the aggregate. 251 | 252 | 6. Conveying Non-Source Forms. 253 | 254 | You may convey a covered work in object code form under the terms 255 | of sections 4 and 5, provided that you also convey the 256 | machine-readable Corresponding Source under the terms of this License, 257 | in one of these ways: 258 | 259 | a) Convey the object code in, or embodied in, a physical product 260 | (including a physical distribution medium), accompanied by the 261 | Corresponding Source fixed on a durable physical medium 262 | customarily used for software interchange. 263 | 264 | b) Convey the object code in, or embodied in, a physical product 265 | (including a physical distribution medium), accompanied by a 266 | written offer, valid for at least three years and valid for as 267 | long as you offer spare parts or customer support for that product 268 | model, to give anyone who possesses the object code either (1) a 269 | copy of the Corresponding Source for all the software in the 270 | product that is covered by this License, on a durable physical 271 | medium customarily used for software interchange, for a price no 272 | more than your reasonable cost of physically performing this 273 | conveying of source, or (2) access to copy the 274 | Corresponding Source from a network server at no charge. 275 | 276 | c) Convey individual copies of the object code with a copy of the 277 | written offer to provide the Corresponding Source. This 278 | alternative is allowed only occasionally and noncommercially, and 279 | only if you received the object code with such an offer, in accord 280 | with subsection 6b. 281 | 282 | d) Convey the object code by offering access from a designated 283 | place (gratis or for a charge), and offer equivalent access to the 284 | Corresponding Source in the same way through the same place at no 285 | further charge. You need not require recipients to copy the 286 | Corresponding Source along with the object code. If the place to 287 | copy the object code is a network server, the Corresponding Source 288 | may be on a different server (operated by you or a third party) 289 | that supports equivalent copying facilities, provided you maintain 290 | clear directions next to the object code saying where to find the 291 | Corresponding Source. Regardless of what server hosts the 292 | Corresponding Source, you remain obligated to ensure that it is 293 | available for as long as needed to satisfy these requirements. 294 | 295 | e) Convey the object code using peer-to-peer transmission, provided 296 | you inform other peers where the object code and Corresponding 297 | Source of the work are being offered to the general public at no 298 | charge under subsection 6d. 299 | 300 | A separable portion of the object code, whose source code is excluded 301 | from the Corresponding Source as a System Library, need not be 302 | included in conveying the object code work. 303 | 304 | A "User Product" is either (1) a "consumer product", which means any 305 | tangible personal property which is normally used for personal, family, 306 | or household purposes, or (2) anything designed or sold for incorporation 307 | into a dwelling. In determining whether a product is a consumer product, 308 | doubtful cases shall be resolved in favor of coverage. For a particular 309 | product received by a particular user, "normally used" refers to a 310 | typical or common use of that class of product, regardless of the status 311 | of the particular user or of the way in which the particular user 312 | actually uses, or expects or is expected to use, the product. A product 313 | is a consumer product regardless of whether the product has substantial 314 | commercial, industrial or non-consumer uses, unless such uses represent 315 | the only significant mode of use of the product. 316 | 317 | "Installation Information" for a User Product means any methods, 318 | procedures, authorization keys, or other information required to install 319 | and execute modified versions of a covered work in that User Product from 320 | a modified version of its Corresponding Source. The information must 321 | suffice to ensure that the continued functioning of the modified object 322 | code is in no case prevented or interfered with solely because 323 | modification has been made. 324 | 325 | If you convey an object code work under this section in, or with, or 326 | specifically for use in, a User Product, and the conveying occurs as 327 | part of a transaction in which the right of possession and use of the 328 | User Product is transferred to the recipient in perpetuity or for a 329 | fixed term (regardless of how the transaction is characterized), the 330 | Corresponding Source conveyed under this section must be accompanied 331 | by the Installation Information. But this requirement does not apply 332 | if neither you nor any third party retains the ability to install 333 | modified object code on the User Product (for example, the work has 334 | been installed in ROM). 335 | 336 | The requirement to provide Installation Information does not include a 337 | requirement to continue to provide support service, warranty, or updates 338 | for a work that has been modified or installed by the recipient, or for 339 | the User Product in which it has been modified or installed. Access to a 340 | network may be denied when the modification itself materially and 341 | adversely affects the operation of the network or violates the rules and 342 | protocols for communication across the network. 343 | 344 | Corresponding Source conveyed, and Installation Information provided, 345 | in accord with this section must be in a format that is publicly 346 | documented (and with an implementation available to the public in 347 | source code form), and must require no special password or key for 348 | unpacking, reading or copying. 349 | 350 | 7. Additional Terms. 351 | 352 | "Additional permissions" are terms that supplement the terms of this 353 | License by making exceptions from one or more of its conditions. 354 | Additional permissions that are applicable to the entire Program shall 355 | be treated as though they were included in this License, to the extent 356 | that they are valid under applicable law. If additional permissions 357 | apply only to part of the Program, that part may be used separately 358 | under those permissions, but the entire Program remains governed by 359 | this License without regard to the additional permissions. 360 | 361 | When you convey a copy of a covered work, you may at your option 362 | remove any additional permissions from that copy, or from any part of 363 | it. (Additional permissions may be written to require their own 364 | removal in certain cases when you modify the work.) You may place 365 | additional permissions on material, added by you to a covered work, 366 | for which you have or can give appropriate copyright permission. 367 | 368 | Notwithstanding any other provision of this License, for material you 369 | add to a covered work, you may (if authorized by the copyright holders of 370 | that material) supplement the terms of this License with terms: 371 | 372 | a) Disclaiming warranty or limiting liability differently from the 373 | terms of sections 15 and 16 of this License; or 374 | 375 | b) Requiring preservation of specified reasonable legal notices or 376 | author attributions in that material or in the Appropriate Legal 377 | Notices displayed by works containing it; or 378 | 379 | c) Prohibiting misrepresentation of the origin of that material, or 380 | requiring that modified versions of such material be marked in 381 | reasonable ways as different from the original version; or 382 | 383 | d) Limiting the use for publicity purposes of names of licensors or 384 | authors of the material; or 385 | 386 | e) Declining to grant rights under trademark law for use of some 387 | trade names, trademarks, or service marks; or 388 | 389 | f) Requiring indemnification of licensors and authors of that 390 | material by anyone who conveys the material (or modified versions of 391 | it) with contractual assumptions of liability to the recipient, for 392 | any liability that these contractual assumptions directly impose on 393 | those licensors and authors. 394 | 395 | All other non-permissive additional terms are considered "further 396 | restrictions" within the meaning of section 10. If the Program as you 397 | received it, or any part of it, contains a notice stating that it is 398 | governed by this License along with a term that is a further 399 | restriction, you may remove that term. If a license document contains 400 | a further restriction but permits relicensing or conveying under this 401 | License, you may add to a covered work material governed by the terms 402 | of that license document, provided that the further restriction does 403 | not survive such relicensing or conveying. 404 | 405 | If you add terms to a covered work in accord with this section, you 406 | must place, in the relevant source files, a statement of the 407 | additional terms that apply to those files, or a notice indicating 408 | where to find the applicable terms. 409 | 410 | Additional terms, permissive or non-permissive, may be stated in the 411 | form of a separately written license, or stated as exceptions; 412 | the above requirements apply either way. 413 | 414 | 8. Termination. 415 | 416 | You may not propagate or modify a covered work except as expressly 417 | provided under this License. Any attempt otherwise to propagate or 418 | modify it is void, and will automatically terminate your rights under 419 | this License (including any patent licenses granted under the third 420 | paragraph of section 11). 421 | 422 | However, if you cease all violation of this License, then your 423 | license from a particular copyright holder is reinstated (a) 424 | provisionally, unless and until the copyright holder explicitly and 425 | finally terminates your license, and (b) permanently, if the copyright 426 | holder fails to notify you of the violation by some reasonable means 427 | prior to 60 days after the cessation. 428 | 429 | Moreover, your license from a particular copyright holder is 430 | reinstated permanently if the copyright holder notifies you of the 431 | violation by some reasonable means, this is the first time you have 432 | received notice of violation of this License (for any work) from that 433 | copyright holder, and you cure the violation prior to 30 days after 434 | your receipt of the notice. 435 | 436 | Termination of your rights under this section does not terminate the 437 | licenses of parties who have received copies or rights from you under 438 | this License. If your rights have been terminated and not permanently 439 | reinstated, you do not qualify to receive new licenses for the same 440 | material under section 10. 441 | 442 | 9. Acceptance Not Required for Having Copies. 443 | 444 | You are not required to accept this License in order to receive or 445 | run a copy of the Program. Ancillary propagation of a covered work 446 | occurring solely as a consequence of using peer-to-peer transmission 447 | to receive a copy likewise does not require acceptance. However, 448 | nothing other than this License grants you permission to propagate or 449 | modify any covered work. These actions infringe copyright if you do 450 | not accept this License. Therefore, by modifying or propagating a 451 | covered work, you indicate your acceptance of this License to do so. 452 | 453 | 10. Automatic Licensing of Downstream Recipients. 454 | 455 | Each time you convey a covered work, the recipient automatically 456 | receives a license from the original licensors, to run, modify and 457 | propagate that work, subject to this License. You are not responsible 458 | for enforcing compliance by third parties with this License. 459 | 460 | An "entity transaction" is a transaction transferring control of an 461 | organization, or substantially all assets of one, or subdividing an 462 | organization, or merging organizations. If propagation of a covered 463 | work results from an entity transaction, each party to that 464 | transaction who receives a copy of the work also receives whatever 465 | licenses to the work the party's predecessor in interest had or could 466 | give under the previous paragraph, plus a right to possession of the 467 | Corresponding Source of the work from the predecessor in interest, if 468 | the predecessor has it or can get it with reasonable efforts. 469 | 470 | You may not impose any further restrictions on the exercise of the 471 | rights granted or affirmed under this License. For example, you may 472 | not impose a license fee, royalty, or other charge for exercise of 473 | rights granted under this License, and you may not initiate litigation 474 | (including a cross-claim or counterclaim in a lawsuit) alleging that 475 | any patent claim is infringed by making, using, selling, offering for 476 | sale, or importing the Program or any portion of it. 477 | 478 | 11. Patents. 479 | 480 | A "contributor" is a copyright holder who authorizes use under this 481 | License of the Program or a work on which the Program is based. The 482 | work thus licensed is called the contributor's "contributor version". 483 | 484 | A contributor's "essential patent claims" are all patent claims 485 | owned or controlled by the contributor, whether already acquired or 486 | hereafter acquired, that would be infringed by some manner, permitted 487 | by this License, of making, using, or selling its contributor version, 488 | but do not include claims that would be infringed only as a 489 | consequence of further modification of the contributor version. For 490 | purposes of this definition, "control" includes the right to grant 491 | patent sublicenses in a manner consistent with the requirements of 492 | this License. 493 | 494 | Each contributor grants you a non-exclusive, worldwide, royalty-free 495 | patent license under the contributor's essential patent claims, to 496 | make, use, sell, offer for sale, import and otherwise run, modify and 497 | propagate the contents of its contributor version. 498 | 499 | In the following three paragraphs, a "patent license" is any express 500 | agreement or commitment, however denominated, not to enforce a patent 501 | (such as an express permission to practice a patent or covenant not to 502 | sue for patent infringement). To "grant" such a patent license to a 503 | party means to make such an agreement or commitment not to enforce a 504 | patent against the party. 505 | 506 | If you convey a covered work, knowingly relying on a patent license, 507 | and the Corresponding Source of the work is not available for anyone 508 | to copy, free of charge and under the terms of this License, through a 509 | publicly available network server or other readily accessible means, 510 | then you must either (1) cause the Corresponding Source to be so 511 | available, or (2) arrange to deprive yourself of the benefit of the 512 | patent license for this particular work, or (3) arrange, in a manner 513 | consistent with the requirements of this License, to extend the patent 514 | license to downstream recipients. "Knowingly relying" means you have 515 | actual knowledge that, but for the patent license, your conveying the 516 | covered work in a country, or your recipient's use of the covered work 517 | in a country, would infringe one or more identifiable patents in that 518 | country that you have reason to believe are valid. 519 | 520 | If, pursuant to or in connection with a single transaction or 521 | arrangement, you convey, or propagate by procuring conveyance of, a 522 | covered work, and grant a patent license to some of the parties 523 | receiving the covered work authorizing them to use, propagate, modify 524 | or convey a specific copy of the covered work, then the patent license 525 | you grant is automatically extended to all recipients of the covered 526 | work and works based on it. 527 | 528 | A patent license is "discriminatory" if it does not include within 529 | the scope of its coverage, prohibits the exercise of, or is 530 | conditioned on the non-exercise of one or more of the rights that are 531 | specifically granted under this License. You may not convey a covered 532 | work if you are a party to an arrangement with a third party that is 533 | in the business of distributing software, under which you make payment 534 | to the third party based on the extent of your activity of conveying 535 | the work, and under which the third party grants, to any of the 536 | parties who would receive the covered work from you, a discriminatory 537 | patent license (a) in connection with copies of the covered work 538 | conveyed by you (or copies made from those copies), or (b) primarily 539 | for and in connection with specific products or compilations that 540 | contain the covered work, unless you entered into that arrangement, 541 | or that patent license was granted, prior to 28 March 2007. 542 | 543 | Nothing in this License shall be construed as excluding or limiting 544 | any implied license or other defenses to infringement that may 545 | otherwise be available to you under applicable patent law. 546 | 547 | 12. No Surrender of Others' Freedom. 548 | 549 | If conditions are imposed on you (whether by court order, agreement or 550 | otherwise) that contradict the conditions of this License, they do not 551 | excuse you from the conditions of this License. If you cannot convey a 552 | covered work so as to satisfy simultaneously your obligations under this 553 | License and any other pertinent obligations, then as a consequence you may 554 | not convey it at all. For example, if you agree to terms that obligate you 555 | to collect a royalty for further conveying from those to whom you convey 556 | the Program, the only way you could satisfy both those terms and this 557 | License would be to refrain entirely from conveying the Program. 558 | 559 | 13. Use with the GNU Affero General Public License. 560 | 561 | Notwithstanding any other provision of this License, you have 562 | permission to link or combine any covered work with a work licensed 563 | under version 3 of the GNU Affero General Public License into a single 564 | combined work, and to convey the resulting work. The terms of this 565 | License will continue to apply to the part which is the covered work, 566 | but the special requirements of the GNU Affero General Public License, 567 | section 13, concerning interaction through a network will apply to the 568 | combination as such. 569 | 570 | 14. Revised Versions of this License. 571 | 572 | The Free Software Foundation may publish revised and/or new versions of 573 | the GNU General Public License from time to time. Such new versions will 574 | be similar in spirit to the present version, but may differ in detail to 575 | address new problems or concerns. 576 | 577 | Each version is given a distinguishing version number. If the 578 | Program specifies that a certain numbered version of the GNU General 579 | Public License "or any later version" applies to it, you have the 580 | option of following the terms and conditions either of that numbered 581 | version or of any later version published by the Free Software 582 | Foundation. If the Program does not specify a version number of the 583 | GNU General Public License, you may choose any version ever published 584 | by the Free Software Foundation. 585 | 586 | If the Program specifies that a proxy can decide which future 587 | versions of the GNU General Public License can be used, that proxy's 588 | public statement of acceptance of a version permanently authorizes you 589 | to choose that version for the Program. 590 | 591 | Later license versions may give you additional or different 592 | permissions. However, no additional obligations are imposed on any 593 | author or copyright holder as a result of your choosing to follow a 594 | later version. 595 | 596 | 15. Disclaimer of Warranty. 597 | 598 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 599 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 600 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 601 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 602 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 603 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 604 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 605 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 606 | 607 | 16. Limitation of Liability. 608 | 609 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 610 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 611 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 612 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 613 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 614 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 615 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 616 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 617 | SUCH DAMAGES. 618 | 619 | 17. Interpretation of Sections 15 and 16. 620 | 621 | If the disclaimer of warranty and limitation of liability provided 622 | above cannot be given local legal effect according to their terms, 623 | reviewing courts shall apply local law that most closely approximates 624 | an absolute waiver of all civil liability in connection with the 625 | Program, unless a warranty or assumption of liability accompanies a 626 | copy of the Program in return for a fee. 627 | 628 | END OF TERMS AND CONDITIONS 629 | 630 | How to Apply These Terms to Your New Programs 631 | 632 | If you develop a new program, and you want it to be of the greatest 633 | possible use to the public, the best way to achieve this is to make it 634 | free software which everyone can redistribute and change under these terms. 635 | 636 | To do so, attach the following notices to the program. It is safest 637 | to attach them to the start of each source file to most effectively 638 | state the exclusion of warranty; and each file should have at least 639 | the "copyright" line and a pointer to where the full notice is found. 640 | 641 | 642 | Copyright (C) 643 | 644 | This program is free software: you can redistribute it and/or modify 645 | it under the terms of the GNU General Public License as published by 646 | the Free Software Foundation, either version 3 of the License, or 647 | (at your option) any later version. 648 | 649 | This program is distributed in the hope that it will be useful, 650 | but WITHOUT ANY WARRANTY; without even the implied warranty of 651 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 652 | GNU General Public License for more details. 653 | 654 | You should have received a copy of the GNU General Public License 655 | along with this program. If not, see . 656 | 657 | Also add information on how to contact you by electronic and paper mail. 658 | 659 | If the program does terminal interaction, make it output a short 660 | notice like this when it starts in an interactive mode: 661 | 662 | Copyright (C) 663 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 664 | This is free software, and you are welcome to redistribute it 665 | under certain conditions; type `show c' for details. 666 | 667 | The hypothetical commands `show w' and `show c' should show the appropriate 668 | parts of the General Public License. Of course, your program's commands 669 | might be different; for a GUI interface, you would use an "about box". 670 | 671 | You should also get your employer (if you work as a programmer) or school, 672 | if any, to sign a "copyright disclaimer" for the program, if necessary. 673 | For more information on this, and how to apply and follow the GNU GPL, see 674 | . 675 | 676 | The GNU General Public License does not permit incorporating your program 677 | into proprietary programs. If your program is a subroutine library, you 678 | may consider it more useful to permit linking proprietary applications with 679 | the library. If this is what you want to do, use the GNU Lesser General 680 | Public License instead of this License. But first, please read 681 | . 682 | 683 | *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 684 | 685 | Additional permissions under GNU GPL Version 3 Section 7: 686 | 687 | KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs. 688 | Hence, KNIME and ECLIPSE are both independent programs and are not 689 | derived from each other. Should, however, the interpretation of the 690 | GNU GPL Version 3 ("License") under any applicable laws result in 691 | KNIME and ECLIPSE being a combined program, KNIME AG herewith grants 692 | you the additional permission to use and propagate KNIME together with 693 | ECLIPSE with only the license terms in place for ECLIPSE applying to 694 | ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the 695 | license terms of ECLIPSE themselves allow for the respective use and 696 | propagation of ECLIPSE together with KNIME. 697 | 698 | 699 | Additional permission relating to nodes for KNIME that extend the Node 700 | Extension (and in particular that are based on subclasses of NodeModel, 701 | NodeDialog, and NodeView) and that only interoperate with KNIME through 702 | standard APIs ("Nodes"): 703 | Nodes are deemed to be separate and independent programs and to not be 704 | covered works. Notwithstanding anything to the contrary in the License, 705 | the License does not apply to Nodes, you are not required to license Nodes 706 | under the License, and you are granted a license to prepare and propagate 707 | Nodes, in each case even if such Nodes are propagated with or for 708 | interoperation with KNIME. The owner of a Node may freely choose the 709 | license terms applicable to such Node, including when such Node is 710 | propagated with or for interoperation with KNIME. --------------------------------------------------------------------------------