diff --git a/build.gradle b/build.gradle index cefae65..28f6836 100755 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,13 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -14,38 +16,20 @@ * limitations under the License. */ -buildscript { - repositories { - jcenter() - maven { url 'https://plugins.gradle.org/m2/' } - } - - dependencies { - classpath 'org.kordamp.gradle:project-gradle-plugin:0.6.0' - classpath 'gradle.plugin.gradle-java9-collision:plugin:0.2.3' - //classpath 'gradle.plugin.org.javamodularity:moduleplugin:1.0.1' - classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.9.2' - classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2' - classpath 'com.google.gradle:osdetector-gradle-plugin:1.6.0' - } +plugins { + id 'groovy' + id 'idea' + id 'org.kordamp.gradle.project' version '0.9.0' + id 'org.openjfx.javafxplugin' version '0.0.5' + id 'org.asciidoctor.convert' version '1.5.9.2' + id 'com.github.kt3k.coveralls' version '2.8.2' + id 'org.jonnyzzz.java9c' version '0.2.3' } -apply plugin: 'groovy' -apply plugin: 'idea' -apply plugin: 'jacoco' -apply plugin: 'org.asciidoctor.convert' -apply plugin: 'com.github.kt3k.coveralls' -apply plugin: 'org.kordamp.gradle.project' -apply plugin: 'com.google.osdetector' -apply plugin: 'org.jonnyzzz.java9c' -//apply plugin: 'org.javamodularity.moduleplugin' - -ext.platform = osdetector.os != 'osx' ? osdetector.os : 'mac' - -if (!project.hasProperty('bintrayUsername')) ext.bintrayUsername = '' -if (!project.hasProperty('bintrayApiKey')) ext.bintrayApiKey = '' -if (!project.hasProperty('sonatypeUsername')) ext.sonatypeUsername = '' -if (!project.hasProperty('sonatypePassword')) ext.sonatypePassword = '' +if (!project.hasProperty('bintrayUsername')) project.ext.bintrayUsername = '' +if (!project.hasProperty('bintrayApiKey')) project.ext.bintrayApiKey = '' +if (!project.hasProperty('sonatypeUsername')) project.ext.sonatypeUsername = '' +if (!project.hasProperty('sonatypePassword')) project.ext.sonatypePassword = '' config { release = (rootProject.findProperty('release') ?: false).toBoolean() @@ -65,11 +49,11 @@ config { people { [ - JimClarke5 : 'Jim Clarke', - deanriverson : 'Dean Iverson', - russel : 'Russel Winder', - aalmiray : 'Andres Almiray', - Dierk : 'Dierk König' + JimClarke5 : 'Jim Clarke', + deanriverson : 'Dean Iverson', + russel : 'Russel Winder', + aalmiray : 'Andres Almiray', + Dierk : 'Dierk König' ].each { devId, devName -> person { id = devId @@ -107,10 +91,6 @@ config { githubRepo = 'groovyfx-project/groovyfx' } - stats { - formats = ['xml', 'txt'] - } - apidoc { enabled = false } @@ -135,6 +115,18 @@ configurations { jansi.extendsFrom(runtime) } +javafx { + modules = [ + 'javafx.base', + 'javafx.graphics', + 'javafx.controls', + 'javafx.fxml', + 'javafx.swing', + 'javafx.web', + 'javafx.media' + ] +} + dependencies { compile "org.codehaus.groovy:groovy-all:${groovyfx_groovyVersion}" testCompile "junit:junit:${groovyfx_junitVersion}" @@ -142,60 +134,57 @@ dependencies { testCompile("org.spockframework:spock-core:${groovyfx_spockVersion}") { exclude group: 'org.codehaus.groovy', module: 'groovy-all' } - - // TODO refactor duplication - - compile "org.openjfx:javafx-base:${groovyfx_javafxVersion}:${platform}" - compile "org.openjfx:javafx-graphics:${groovyfx_javafxVersion}:${platform}" - compile "org.openjfx:javafx-controls:${groovyfx_javafxVersion}:${platform}" - compile "org.openjfx:javafx-fxml:${groovyfx_javafxVersion}:${platform}" - compile "org.openjfx:javafx-swing:${groovyfx_javafxVersion}:${platform}" - compile "org.openjfx:javafx-web:${groovyfx_javafxVersion}:${platform}" - compile "org.openjfx:javafx-media:${groovyfx_javafxVersion}:${platform}" } -apply { - // from 'gradle/demo.gradle' +license { + mapping { + java = 'SLASHSTAR_STYLE' + groovy = 'SLASHSTAR_STYLE' + gdsl = 'SLASHSTAR_STYLE' + dsld = 'SLASHSTAR_STYLE' + fxml = 'XML_STYLE' + } + exclude '**/*.png' + exclude '**/*.jpg' } idea { - module { - // excludeDirs += file('gradle/') // Gradle directory including the wrapper subdirectory. - excludeDirs += file('.settings/') // Eclipse settings directory. - excludeDirs += file('bin') // Eclipse compilation directory. - excludeDirs += file('out') // IDEA compilation directory. - excludeDirs += file('build') // Gradle compilation directory. - } - project { - jdkName '11' - languageLevel '11' - ipr { - withXml { provider -> - final node = provider.asNode() - final component = provider.asNode().component - node.component.find { it.'@name' == 'VcsDirectoryMappings' }.mapping[0].'@vcs' = 'Git' - final gradleSettings = node.appendNode('component' , [name: 'GradleSettings']) - gradleSettings.appendNode('option', [name: 'linkedProjectPath', value: '$PROJECT_DIR$/build.gradle']) - } + module { + // excludeDirs += file('gradle/') // Gradle directory including the wrapper subdirectory. + excludeDirs += file('.settings/') // Eclipse settings directory. + excludeDirs += file('bin') // Eclipse compilation directory. + excludeDirs += file('out') // IDEA compilation directory. + excludeDirs += file('build') // Gradle compilation directory. + } + project { + jdkName '11' + languageLevel '11' + ipr { + withXml { provider -> + final node = provider.asNode() + final component = provider.asNode().component + node.component.find { it.'@name' == 'VcsDirectoryMappings' }.mapping[0].'@vcs' = 'Git' + final gradleSettings = node.appendNode('component', [name: 'GradleSettings']) + gradleSettings.appendNode('option', [name: 'linkedProjectPath', value: '$PROJECT_DIR$/build.gradle']) + } + } } - } } asciidoctor { - //sources { include 'index.adoc' } - attributes toc: 'left', - doctype: 'book', - icons: 'font', - encoding: 'utf-8', - sectlink: true, - sectanchors: true, - numbered: true, - linkattrs: true, - imagesdir: 'images', - stylesheet: 'css/style.css', - 'source-highlighter': 'coderay', - 'groovyfx-version': project.version, - 'groovy-version': project.groovyfx_groovyVersion + attributes toc: 'left', + doctype: 'book', + icons: 'font', + encoding: 'utf-8', + sectlink: true, + sectanchors: true, + numbered: true, + linkattrs: true, + imagesdir: 'images', + stylesheet: 'css/style.css', + 'source-highlighter': 'coderay', + 'groovyfx-version': project.version, + 'groovy-version': project.groovyfx_groovyVersion } test { @@ -208,23 +197,10 @@ jacoco { toolVersion = '0.8.2' } -jacocoTestReport { - group = "Reporting" - description = "Generate Jacoco coverage reports after running tests." - additionalSourceDirs = project.files(sourceSets.main.allSource.srcDirs) - sourceDirectories = project.files(sourceSets.main.allSource.srcDirs) - classDirectories = project.files(sourceSets.main.output) - reports { - xml.enabled = true - csv.enabled = false - html.enabled = true - } -} - processResources { from(sourceSets.main.resources.srcDirs) { filter(org.apache.tools.ant.filters.ReplaceTokens, tokens: [ - 'groovyfx.version' : project.version + 'groovyfx.version': project.version ]) } } diff --git a/gradle.properties b/gradle.properties index 60abc82..74191a5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ group = org.groovyfx archivesBaseName = groovyfx version = 11.0.0-SNAPSHOT groovyfx_javafxVersion = 11 -groovyfx_groovyVersion = 2.5.3 +groovyfx_groovyVersion = 2.5.4 groovyfx_junitVersion = 4.12 groovyfx_spockVersion = 1.2-groovy-2.5 groovyfx_jansiVersion = 1.17.1 diff --git a/gradle/LICENSE_HEADER b/gradle/LICENSE_HEADER new file mode 100644 index 0000000..4ef424c --- /dev/null +++ b/gradle/LICENSE_HEADER @@ -0,0 +1,15 @@ +SPDX-License-Identifier: Apache-2.0 + +Copyright ${copyrightYear} the original author or authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/gradle/demo.gradle b/gradle/demo.gradle index de1a327..ef85726 100644 --- a/gradle/demo.gradle +++ b/gradle/demo.gradle @@ -1,11 +1,13 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 28861d2..457aad0 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e0b3fb8..75b8c7c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index cccdd3d..af6708f 100755 --- a/gradlew +++ b/gradlew @@ -28,7 +28,7 @@ APP_NAME="Gradle" APP_BASE_NAME=`basename "$0"` # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS="" +DEFAULT_JVM_OPTS='"-Xmx64m"' # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD="maximum" diff --git a/gradlew.bat b/gradlew.bat index e95643d..0f8d593 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -14,7 +14,7 @@ set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS= +set DEFAULT_JVM_OPTS="-Xmx64m" @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome diff --git a/src/main/groovy/groovyx/javafx/GroovyFX.java b/src/main/groovy/groovyx/javafx/GroovyFX.java index e20ce43..e640a63 100644 --- a/src/main/groovy/groovyx/javafx/GroovyFX.java +++ b/src/main/groovy/groovyx/javafx/GroovyFX.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/GroovyFXEnhancer.groovy b/src/main/groovy/groovyx/javafx/GroovyFXEnhancer.groovy index dab6aaa..64c586f 100644 --- a/src/main/groovy/groovyx/javafx/GroovyFXEnhancer.groovy +++ b/src/main/groovy/groovyx/javafx/GroovyFXEnhancer.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/InterpolatorEnums.java b/src/main/groovy/groovyx/javafx/InterpolatorEnums.java index 4eafd3b..606f50a 100644 --- a/src/main/groovy/groovyx/javafx/InterpolatorEnums.java +++ b/src/main/groovy/groovyx/javafx/InterpolatorEnums.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/JdkUtil.groovy b/src/main/groovy/groovyx/javafx/JdkUtil.groovy deleted file mode 100644 index 5fb96f0..0000000 --- a/src/main/groovy/groovyx/javafx/JdkUtil.groovy +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright 2011-2018 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package groovyx.javafx - -class JdkUtil { - static boolean jdkIsBefore8() { - String version = System.properties['java.version'] - if (version.startsWith('1')) { - version[0..2].toFloat() < 1.8f - } else { - false - } - } -} diff --git a/src/main/groovy/groovyx/javafx/SceneGraphBuilder.groovy b/src/main/groovy/groovyx/javafx/SceneGraphBuilder.groovy index 09b89ba..93a9fb5 100644 --- a/src/main/groovy/groovyx/javafx/SceneGraphBuilder.groovy +++ b/src/main/groovy/groovyx/javafx/SceneGraphBuilder.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/animation/GTimeline.groovy b/src/main/groovy/groovyx/javafx/animation/GTimeline.groovy index e530c3b..93293ba 100644 --- a/src/main/groovy/groovyx/javafx/animation/GTimeline.groovy +++ b/src/main/groovy/groovyx/javafx/animation/GTimeline.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/animation/TargetHolder.groovy b/src/main/groovy/groovyx/javafx/animation/TargetHolder.groovy index 51b0baa..e210c60 100644 --- a/src/main/groovy/groovyx/javafx/animation/TargetHolder.groovy +++ b/src/main/groovy/groovyx/javafx/animation/TargetHolder.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/appsupport/Action.java b/src/main/groovy/groovyx/javafx/appsupport/Action.java index 41ef25e..2e04baf 100644 --- a/src/main/groovy/groovyx/javafx/appsupport/Action.java +++ b/src/main/groovy/groovyx/javafx/appsupport/Action.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/beans/FXBindable.java b/src/main/groovy/groovyx/javafx/beans/FXBindable.java index 36b7d59..dff6cdb 100644 --- a/src/main/groovy/groovyx/javafx/beans/FXBindable.java +++ b/src/main/groovy/groovyx/javafx/beans/FXBindable.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/beans/FXBindableASTTransformation.java b/src/main/groovy/groovyx/javafx/beans/FXBindableASTTransformation.java index 253f334..012f3df 100644 --- a/src/main/groovy/groovyx/javafx/beans/FXBindableASTTransformation.java +++ b/src/main/groovy/groovyx/javafx/beans/FXBindableASTTransformation.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/BindingHolder.groovy b/src/main/groovy/groovyx/javafx/binding/BindingHolder.groovy index 3ab60f1..93d7b0e 100644 --- a/src/main/groovy/groovyx/javafx/binding/BindingHolder.groovy +++ b/src/main/groovy/groovyx/javafx/binding/BindingHolder.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/ConverterProperty.java b/src/main/groovy/groovyx/javafx/binding/ConverterProperty.java index ea479ff..ade652b 100644 --- a/src/main/groovy/groovyx/javafx/binding/ConverterProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/ConverterProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/GroovyClosureProperty.java b/src/main/groovy/groovyx/javafx/binding/GroovyClosureProperty.java index 70e9a77..a3c1c3f 100644 --- a/src/main/groovy/groovyx/javafx/binding/GroovyClosureProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/GroovyClosureProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/ScriptVariableBooleanProperty.java b/src/main/groovy/groovyx/javafx/binding/ScriptVariableBooleanProperty.java index 7c819ed..7f063bc 100644 --- a/src/main/groovy/groovyx/javafx/binding/ScriptVariableBooleanProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/ScriptVariableBooleanProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/ScriptVariableDoubleProperty.java b/src/main/groovy/groovyx/javafx/binding/ScriptVariableDoubleProperty.java index c22e91a..8411b51 100644 --- a/src/main/groovy/groovyx/javafx/binding/ScriptVariableDoubleProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/ScriptVariableDoubleProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/ScriptVariableFloatProperty.java b/src/main/groovy/groovyx/javafx/binding/ScriptVariableFloatProperty.java index 9c7d5d5..b76aa66 100644 --- a/src/main/groovy/groovyx/javafx/binding/ScriptVariableFloatProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/ScriptVariableFloatProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/ScriptVariableIntegerProperty.java b/src/main/groovy/groovyx/javafx/binding/ScriptVariableIntegerProperty.java index b7131d7..37ad414 100644 --- a/src/main/groovy/groovyx/javafx/binding/ScriptVariableIntegerProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/ScriptVariableIntegerProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/ScriptVariableLongProperty.java b/src/main/groovy/groovyx/javafx/binding/ScriptVariableLongProperty.java index 2484647..b2e6e13 100644 --- a/src/main/groovy/groovyx/javafx/binding/ScriptVariableLongProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/ScriptVariableLongProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/ScriptVariableObjectProperty.java b/src/main/groovy/groovyx/javafx/binding/ScriptVariableObjectProperty.java index c63e668..ce6dc79 100644 --- a/src/main/groovy/groovyx/javafx/binding/ScriptVariableObjectProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/ScriptVariableObjectProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/ScriptVariableProperty.java b/src/main/groovy/groovyx/javafx/binding/ScriptVariableProperty.java index 04ef65f..510d784 100644 --- a/src/main/groovy/groovyx/javafx/binding/ScriptVariableProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/ScriptVariableProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/ScriptVariableStringProperty.java b/src/main/groovy/groovyx/javafx/binding/ScriptVariableStringProperty.java index 9068da3..0e9ed62 100644 --- a/src/main/groovy/groovyx/javafx/binding/ScriptVariableStringProperty.java +++ b/src/main/groovy/groovyx/javafx/binding/ScriptVariableStringProperty.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/binding/Util.java b/src/main/groovy/groovyx/javafx/binding/Util.java index ef50c8d..cf3fed9 100644 --- a/src/main/groovy/groovyx/javafx/binding/Util.java +++ b/src/main/groovy/groovyx/javafx/binding/Util.java @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/AppendSVGPathOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/AppendSVGPathOperation.groovy index ce96657..4e4e762 100644 --- a/src/main/groovy/groovyx/javafx/canvas/AppendSVGPathOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/AppendSVGPathOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/ApplyEffectOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/ApplyEffectOperation.groovy index c41051a..87f406e 100644 --- a/src/main/groovy/groovyx/javafx/canvas/ApplyEffectOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/ApplyEffectOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/ArcOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/ArcOperation.groovy index 313b4ef..a2b3256 100644 --- a/src/main/groovy/groovyx/javafx/canvas/ArcOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/ArcOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/ArcToOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/ArcToOperation.groovy index 06c7739..20297e2 100644 --- a/src/main/groovy/groovyx/javafx/canvas/ArcToOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/ArcToOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/BeginPathOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/BeginPathOperation.groovy index 681fd54..178f090 100644 --- a/src/main/groovy/groovyx/javafx/canvas/BeginPathOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/BeginPathOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/BezierCurveToOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/BezierCurveToOperation.groovy index 53a5314..b3bd11e 100644 --- a/src/main/groovy/groovyx/javafx/canvas/BezierCurveToOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/BezierCurveToOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/CanvasOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/CanvasOperation.groovy index 83fd82a..0e08541 100644 --- a/src/main/groovy/groovyx/javafx/canvas/CanvasOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/CanvasOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/ClearRectOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/ClearRectOperation.groovy index 14c91d5..75c7ac0 100644 --- a/src/main/groovy/groovyx/javafx/canvas/ClearRectOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/ClearRectOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/ClipOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/ClipOperation.groovy index 52e50ad..7878334 100644 --- a/src/main/groovy/groovyx/javafx/canvas/ClipOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/ClipOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/ClosePathOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/ClosePathOperation.groovy index ea8bb5c..e0e1e47 100644 --- a/src/main/groovy/groovyx/javafx/canvas/ClosePathOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/ClosePathOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/ClosureOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/ClosureOperation.groovy index 9ad5ad0..86cd724 100644 --- a/src/main/groovy/groovyx/javafx/canvas/ClosureOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/ClosureOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/DrawImageOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/DrawImageOperation.groovy index 8f78c7c..02ebd9e 100644 --- a/src/main/groovy/groovyx/javafx/canvas/DrawImageOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/DrawImageOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/DrawOperations.groovy b/src/main/groovy/groovyx/javafx/canvas/DrawOperations.groovy index 96fb1d1..66c1260 100644 --- a/src/main/groovy/groovyx/javafx/canvas/DrawOperations.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/DrawOperations.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/FillArcOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/FillArcOperation.groovy index 47f4ecd..2e25cc6 100644 --- a/src/main/groovy/groovyx/javafx/canvas/FillArcOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/FillArcOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/FillOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/FillOperation.groovy index d5ea8a5..189941d 100644 --- a/src/main/groovy/groovyx/javafx/canvas/FillOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/FillOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/FillOvalOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/FillOvalOperation.groovy index a0baf08..6d08a5f 100644 --- a/src/main/groovy/groovyx/javafx/canvas/FillOvalOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/FillOvalOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/FillPolygonOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/FillPolygonOperation.groovy index 55fb944..2c6be77 100644 --- a/src/main/groovy/groovyx/javafx/canvas/FillPolygonOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/FillPolygonOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/FillRectOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/FillRectOperation.groovy index 69459e6..8919b25 100644 --- a/src/main/groovy/groovyx/javafx/canvas/FillRectOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/FillRectOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/FillRoundRectOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/FillRoundRectOperation.groovy index 01699b5..1fe0649 100644 --- a/src/main/groovy/groovyx/javafx/canvas/FillRoundRectOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/FillRoundRectOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/FillTextOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/FillTextOperation.groovy index 866135d..ebeb670 100644 --- a/src/main/groovy/groovyx/javafx/canvas/FillTextOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/FillTextOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/LineToOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/LineToOperation.groovy index 94ffdd9..31c77b4 100644 --- a/src/main/groovy/groovyx/javafx/canvas/LineToOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/LineToOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/MoveToOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/MoveToOperation.groovy index 8c97d0c..9e6da08 100644 --- a/src/main/groovy/groovyx/javafx/canvas/MoveToOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/MoveToOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/QuadraticCurveToOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/QuadraticCurveToOperation.groovy index b3f2589..828f97e 100644 --- a/src/main/groovy/groovyx/javafx/canvas/QuadraticCurveToOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/QuadraticCurveToOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/RectOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/RectOperation.groovy index 320e954..5c1e6cf 100644 --- a/src/main/groovy/groovyx/javafx/canvas/RectOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/RectOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/RestoreOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/RestoreOperation.groovy index 4c0a1b9..52f7ee9 100644 --- a/src/main/groovy/groovyx/javafx/canvas/RestoreOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/RestoreOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/RotateOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/RotateOperation.groovy index 9c0ac1d..0cca6c2 100644 --- a/src/main/groovy/groovyx/javafx/canvas/RotateOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/RotateOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SaveOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SaveOperation.groovy index 0ce99ee..b914d51 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SaveOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SaveOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/ScaleOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/ScaleOperation.groovy index 52f2305..09ad76e 100644 --- a/src/main/groovy/groovyx/javafx/canvas/ScaleOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/ScaleOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetEffectOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetEffectOperation.groovy index 85311bd..9b35022 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetEffectOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetEffectOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetFillOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetFillOperation.groovy index 9c1f946..9781c60 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetFillOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetFillOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetFillRuleOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetFillRuleOperation.groovy index e15b0c3..2060555 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetFillRuleOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetFillRuleOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetFontOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetFontOperation.groovy index 65d3029..d66a02e 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetFontOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetFontOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetGlobalAlphaOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetGlobalAlphaOperation.groovy index a70c720..2bcc711 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetGlobalAlphaOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetGlobalAlphaOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetGlobalBlendModeOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetGlobalBlendModeOperation.groovy index 016321d..ed177ab 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetGlobalBlendModeOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetGlobalBlendModeOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetLineCapOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetLineCapOperation.groovy index b937304..185e07f 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetLineCapOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetLineCapOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetLineJoinOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetLineJoinOperation.groovy index b1b3efb..661102d 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetLineJoinOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetLineJoinOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetLineWidthOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetLineWidthOperation.groovy index 80179b0..453273d 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetLineWidthOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetLineWidthOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetMiterLimitOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetMiterLimitOperation.groovy index 4719ced..fab1fb4 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetMiterLimitOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetMiterLimitOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetStrokeOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetStrokeOperation.groovy index 03ebd06..7ceddb2 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetStrokeOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetStrokeOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetTextAlignOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetTextAlignOperation.groovy index 3a6846a..a8d1456 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetTextAlignOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetTextAlignOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetTextBaselineOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetTextBaselineOperation.groovy index ebab361..3fb42e1 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetTextBaselineOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetTextBaselineOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/SetTransformOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/SetTransformOperation.groovy index 8f619e7..1956e4d 100644 --- a/src/main/groovy/groovyx/javafx/canvas/SetTransformOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/SetTransformOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/StrokeArcOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/StrokeArcOperation.groovy index 94ac619..a958503 100644 --- a/src/main/groovy/groovyx/javafx/canvas/StrokeArcOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/StrokeArcOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/StrokeLineOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/StrokeLineOperation.groovy index 5c48617..2baf772 100644 --- a/src/main/groovy/groovyx/javafx/canvas/StrokeLineOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/StrokeLineOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/StrokeOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/StrokeOperation.groovy index 90c99b2..52b45f2 100644 --- a/src/main/groovy/groovyx/javafx/canvas/StrokeOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/StrokeOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/StrokeOvalOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/StrokeOvalOperation.groovy index 83a203f..bec08a2 100644 --- a/src/main/groovy/groovyx/javafx/canvas/StrokeOvalOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/StrokeOvalOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/StrokePolygonOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/StrokePolygonOperation.groovy index 2d3e3ce..c8ba1d9 100644 --- a/src/main/groovy/groovyx/javafx/canvas/StrokePolygonOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/StrokePolygonOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/StrokePolylineOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/StrokePolylineOperation.groovy index 75b0fac..0aa96e9 100644 --- a/src/main/groovy/groovyx/javafx/canvas/StrokePolylineOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/StrokePolylineOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/StrokeRectOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/StrokeRectOperation.groovy index 8e724a8..fd0b994 100644 --- a/src/main/groovy/groovyx/javafx/canvas/StrokeRectOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/StrokeRectOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/StrokeRoundRectOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/StrokeRoundRectOperation.groovy index e2ffe9f..910f6fa 100644 --- a/src/main/groovy/groovyx/javafx/canvas/StrokeRoundRectOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/StrokeRoundRectOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/StrokeTextOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/StrokeTextOperation.groovy index ab08fba..240ba0b 100644 --- a/src/main/groovy/groovyx/javafx/canvas/StrokeTextOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/StrokeTextOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/TransformOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/TransformOperation.groovy index b0b1132..dbd8d77 100644 --- a/src/main/groovy/groovyx/javafx/canvas/TransformOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/TransformOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/canvas/TranslateOperation.groovy b/src/main/groovy/groovyx/javafx/canvas/TranslateOperation.groovy index 632a57c..09958b7 100644 --- a/src/main/groovy/groovyx/javafx/canvas/TranslateOperation.groovy +++ b/src/main/groovy/groovyx/javafx/canvas/TranslateOperation.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/event/AbstractClosureProperty.groovy b/src/main/groovy/groovyx/javafx/event/AbstractClosureProperty.groovy index 87fc256..2b49320 100644 --- a/src/main/groovy/groovyx/javafx/event/AbstractClosureProperty.groovy +++ b/src/main/groovy/groovyx/javafx/event/AbstractClosureProperty.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/event/GroovyCallback.groovy b/src/main/groovy/groovyx/javafx/event/GroovyCallback.groovy index 37d33a8..6f883e7 100644 --- a/src/main/groovy/groovyx/javafx/event/GroovyCallback.groovy +++ b/src/main/groovy/groovyx/javafx/event/GroovyCallback.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/event/GroovyChangeListener.groovy b/src/main/groovy/groovyx/javafx/event/GroovyChangeListener.groovy index 6660916..fb24e4b 100644 --- a/src/main/groovy/groovyx/javafx/event/GroovyChangeListener.groovy +++ b/src/main/groovy/groovyx/javafx/event/GroovyChangeListener.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/event/GroovyEventHandler.groovy b/src/main/groovy/groovyx/javafx/event/GroovyEventHandler.groovy index 75b2f33..11885d0 100644 --- a/src/main/groovy/groovyx/javafx/event/GroovyEventHandler.groovy +++ b/src/main/groovy/groovyx/javafx/event/GroovyEventHandler.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/event/GroovyInvalidationListener.groovy b/src/main/groovy/groovyx/javafx/event/GroovyInvalidationListener.groovy index 47e8a2d..cd254d0 100644 --- a/src/main/groovy/groovyx/javafx/event/GroovyInvalidationListener.groovy +++ b/src/main/groovy/groovyx/javafx/event/GroovyInvalidationListener.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/BooleanBindingExtension.groovy b/src/main/groovy/groovyx/javafx/extension/BooleanBindingExtension.groovy index bf114a2..bd002c3 100644 --- a/src/main/groovy/groovyx/javafx/extension/BooleanBindingExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/BooleanBindingExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/ControlsExtension.groovy b/src/main/groovy/groovyx/javafx/extension/ControlsExtension.groovy index 869486f..c2980be 100644 --- a/src/main/groovy/groovyx/javafx/extension/ControlsExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/ControlsExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/NodeExtension.groovy b/src/main/groovy/groovyx/javafx/extension/NodeExtension.groovy index 26ad26b..6e0e44e 100644 --- a/src/main/groovy/groovyx/javafx/extension/NodeExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/NodeExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/NumberBindingExtension.groovy b/src/main/groovy/groovyx/javafx/extension/NumberBindingExtension.groovy index 4cf73b9..b226098 100644 --- a/src/main/groovy/groovyx/javafx/extension/NumberBindingExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/NumberBindingExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/NumberExtension.groovy b/src/main/groovy/groovyx/javafx/extension/NumberExtension.groovy index 7a6555a..ca15ba0 100644 --- a/src/main/groovy/groovyx/javafx/extension/NumberExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/NumberExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/ReadOnlyBooleanPropertyExtension.groovy b/src/main/groovy/groovyx/javafx/extension/ReadOnlyBooleanPropertyExtension.groovy index 3fcb92e..2185272 100644 --- a/src/main/groovy/groovyx/javafx/extension/ReadOnlyBooleanPropertyExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/ReadOnlyBooleanPropertyExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/ReadOnlyDoublePropertyExtension.groovy b/src/main/groovy/groovyx/javafx/extension/ReadOnlyDoublePropertyExtension.groovy index 5036d9c..35c8a92 100644 --- a/src/main/groovy/groovyx/javafx/extension/ReadOnlyDoublePropertyExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/ReadOnlyDoublePropertyExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/ReadOnlyFloatPropertyExtension.groovy b/src/main/groovy/groovyx/javafx/extension/ReadOnlyFloatPropertyExtension.groovy index b419276..3840611 100644 --- a/src/main/groovy/groovyx/javafx/extension/ReadOnlyFloatPropertyExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/ReadOnlyFloatPropertyExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/ReadOnlyIntegerPropertyExtension.groovy b/src/main/groovy/groovyx/javafx/extension/ReadOnlyIntegerPropertyExtension.groovy index 0e9dbd3..d059835 100644 --- a/src/main/groovy/groovyx/javafx/extension/ReadOnlyIntegerPropertyExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/ReadOnlyIntegerPropertyExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/ReadOnlyListPropertyExtension.groovy b/src/main/groovy/groovyx/javafx/extension/ReadOnlyListPropertyExtension.groovy index 14308c6..68de923 100644 --- a/src/main/groovy/groovyx/javafx/extension/ReadOnlyListPropertyExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/ReadOnlyListPropertyExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/ReadOnlyLongPropertyExtension.groovy b/src/main/groovy/groovyx/javafx/extension/ReadOnlyLongPropertyExtension.groovy index 60df221..30c2f24 100644 --- a/src/main/groovy/groovyx/javafx/extension/ReadOnlyLongPropertyExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/ReadOnlyLongPropertyExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/ReadOnlyMapPropertyExtension.groovy b/src/main/groovy/groovyx/javafx/extension/ReadOnlyMapPropertyExtension.groovy index f915f47..c42766b 100644 --- a/src/main/groovy/groovyx/javafx/extension/ReadOnlyMapPropertyExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/ReadOnlyMapPropertyExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/extension/ReadOnlyObjectPropertyExtension.groovy b/src/main/groovy/groovyx/javafx/extension/ReadOnlyObjectPropertyExtension.groovy index 961c1ff..a0c9ed6 100644 --- a/src/main/groovy/groovyx/javafx/extension/ReadOnlyObjectPropertyExtension.groovy +++ b/src/main/groovy/groovyx/javafx/extension/ReadOnlyObjectPropertyExtension.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/AbstractFxBeanFactory.groovy b/src/main/groovy/groovyx/javafx/factory/AbstractFxBeanFactory.groovy index 44b393e..500ef62 100644 --- a/src/main/groovy/groovyx/javafx/factory/AbstractFxBeanFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/AbstractFxBeanFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/AbstractGradientFactory.groovy b/src/main/groovy/groovyx/javafx/factory/AbstractGradientFactory.groovy index f9eabc7..2447819 100644 --- a/src/main/groovy/groovyx/javafx/factory/AbstractGradientFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/AbstractGradientFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/AbstractNodeFactory.groovy b/src/main/groovy/groovyx/javafx/factory/AbstractNodeFactory.groovy index 6db3dd1..0f79776 100644 --- a/src/main/groovy/groovyx/javafx/factory/AbstractNodeFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/AbstractNodeFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ActionFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ActionFactory.groovy index f0c2599..cf8d8a0 100644 --- a/src/main/groovy/groovyx/javafx/factory/ActionFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ActionFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/AxisFactory.groovy b/src/main/groovy/groovyx/javafx/factory/AxisFactory.groovy index a4ab3bd..51b9ae6 100644 --- a/src/main/groovy/groovyx/javafx/factory/AxisFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/AxisFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/BindFactory.groovy b/src/main/groovy/groovyx/javafx/factory/BindFactory.groovy index 94feb79..bc77f19 100644 --- a/src/main/groovy/groovyx/javafx/factory/BindFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/BindFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/BorderPanePosition.groovy b/src/main/groovy/groovyx/javafx/factory/BorderPanePosition.groovy index f9b5038..3117e42 100644 --- a/src/main/groovy/groovyx/javafx/factory/BorderPanePosition.groovy +++ b/src/main/groovy/groovyx/javafx/factory/BorderPanePosition.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/BorderPanePositionFactory.groovy b/src/main/groovy/groovyx/javafx/factory/BorderPanePositionFactory.groovy index b0ce9e2..232df48 100644 --- a/src/main/groovy/groovyx/javafx/factory/BorderPanePositionFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/BorderPanePositionFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/CanvasClosureOperationFactory.groovy b/src/main/groovy/groovyx/javafx/factory/CanvasClosureOperationFactory.groovy index d59b48f..058ca4d 100644 --- a/src/main/groovy/groovyx/javafx/factory/CanvasClosureOperationFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/CanvasClosureOperationFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/CanvasFactory.groovy b/src/main/groovy/groovyx/javafx/factory/CanvasFactory.groovy index b9eec78..e931d8d 100644 --- a/src/main/groovy/groovyx/javafx/factory/CanvasFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/CanvasFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/CanvasOperationFactory.groovy b/src/main/groovy/groovyx/javafx/factory/CanvasOperationFactory.groovy index c034749..017534a 100644 --- a/src/main/groovy/groovyx/javafx/factory/CanvasOperationFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/CanvasOperationFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/CellFactory.groovy b/src/main/groovy/groovyx/javafx/factory/CellFactory.groovy index c709bc9..59c26c3 100644 --- a/src/main/groovy/groovyx/javafx/factory/CellFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/CellFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ChangeFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ChangeFactory.groovy index 7afe798..21f57c8 100644 --- a/src/main/groovy/groovyx/javafx/factory/ChangeFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ChangeFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ClipFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ClipFactory.groovy index 41ba58a..458ad4a 100644 --- a/src/main/groovy/groovyx/javafx/factory/ClipFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ClipFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ClipHolder.groovy b/src/main/groovy/groovyx/javafx/factory/ClipHolder.groovy index cda45ac..dad8683 100644 --- a/src/main/groovy/groovyx/javafx/factory/ClipHolder.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ClipHolder.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ClosureHandlerFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ClosureHandlerFactory.groovy index 9ea97b9..d4732fd 100644 --- a/src/main/groovy/groovyx/javafx/factory/ClosureHandlerFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ClosureHandlerFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ClosureHolder.groovy b/src/main/groovy/groovyx/javafx/factory/ClosureHolder.groovy index 1ef7940..86be3c2 100644 --- a/src/main/groovy/groovyx/javafx/factory/ClosureHolder.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ClosureHolder.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ColorFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ColorFactory.groovy index 7899e79..6511691 100644 --- a/src/main/groovy/groovyx/javafx/factory/ColorFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ColorFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ContainerFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ContainerFactory.groovy index 74ca626..64f4a6b 100644 --- a/src/main/groovy/groovyx/javafx/factory/ContainerFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ContainerFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ControlFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ControlFactory.groovy index ca610b3..41755a5 100644 --- a/src/main/groovy/groovyx/javafx/factory/ControlFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ControlFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/CustomNodeFactory.groovy b/src/main/groovy/groovyx/javafx/factory/CustomNodeFactory.groovy index 01f174a..6851ff7 100644 --- a/src/main/groovy/groovyx/javafx/factory/CustomNodeFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/CustomNodeFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/DividerPosition.groovy b/src/main/groovy/groovyx/javafx/factory/DividerPosition.groovy index 53c7dec..fb58fed 100644 --- a/src/main/groovy/groovyx/javafx/factory/DividerPosition.groovy +++ b/src/main/groovy/groovyx/javafx/factory/DividerPosition.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/DividerPositionFactory.groovy b/src/main/groovy/groovyx/javafx/factory/DividerPositionFactory.groovy index 9624cbd..fdce1a8 100644 --- a/src/main/groovy/groovyx/javafx/factory/DividerPositionFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/DividerPositionFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/DrawFactory.groovy b/src/main/groovy/groovyx/javafx/factory/DrawFactory.groovy index cda147b..8824ed9 100644 --- a/src/main/groovy/groovyx/javafx/factory/DrawFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/DrawFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/EffectFactory.groovy b/src/main/groovy/groovyx/javafx/factory/EffectFactory.groovy index 08762ac..929ae29 100644 --- a/src/main/groovy/groovyx/javafx/factory/EffectFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/EffectFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/EffectWrapper.groovy b/src/main/groovy/groovyx/javafx/factory/EffectWrapper.groovy index b4c5fe2..65177f8 100644 --- a/src/main/groovy/groovyx/javafx/factory/EffectWrapper.groovy +++ b/src/main/groovy/groovyx/javafx/factory/EffectWrapper.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/FXHelper.groovy b/src/main/groovy/groovyx/javafx/factory/FXHelper.groovy index 1e55e13..35aba78 100644 --- a/src/main/groovy/groovyx/javafx/factory/FXHelper.groovy +++ b/src/main/groovy/groovyx/javafx/factory/FXHelper.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/FXMLFactory.groovy b/src/main/groovy/groovyx/javafx/factory/FXMLFactory.groovy index 9abbe32..d562c8d 100644 --- a/src/main/groovy/groovyx/javafx/factory/FXMLFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/FXMLFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/FXMLLoaderBuilder.groovy b/src/main/groovy/groovyx/javafx/factory/FXMLLoaderBuilder.groovy index 257f9e6..d60eacc 100644 --- a/src/main/groovy/groovyx/javafx/factory/FXMLLoaderBuilder.groovy +++ b/src/main/groovy/groovyx/javafx/factory/FXMLLoaderBuilder.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/FillFactory.groovy b/src/main/groovy/groovyx/javafx/factory/FillFactory.groovy index bb90640..b126570 100644 --- a/src/main/groovy/groovyx/javafx/factory/FillFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/FillFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/FilterFactory.groovy b/src/main/groovy/groovyx/javafx/factory/FilterFactory.groovy index aaad740..be14c5a 100644 --- a/src/main/groovy/groovyx/javafx/factory/FilterFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/FilterFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/FontFactory.groovy b/src/main/groovy/groovyx/javafx/factory/FontFactory.groovy index 93972fc..fbeb42f 100644 --- a/src/main/groovy/groovyx/javafx/factory/FontFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/FontFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/Graphic.groovy b/src/main/groovy/groovyx/javafx/factory/Graphic.groovy index 828ec4c..1b27a69 100644 --- a/src/main/groovy/groovyx/javafx/factory/Graphic.groovy +++ b/src/main/groovy/groovyx/javafx/factory/Graphic.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/GraphicFactory.groovy b/src/main/groovy/groovyx/javafx/factory/GraphicFactory.groovy index d0c9077..5db2771 100644 --- a/src/main/groovy/groovyx/javafx/factory/GraphicFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/GraphicFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/GridColumn.groovy b/src/main/groovy/groovyx/javafx/factory/GridColumn.groovy index d1245c8..3aad6e1 100644 --- a/src/main/groovy/groovyx/javafx/factory/GridColumn.groovy +++ b/src/main/groovy/groovyx/javafx/factory/GridColumn.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/GridConstraint.groovy b/src/main/groovy/groovyx/javafx/factory/GridConstraint.groovy index 85a7d8f..1c7e7c3 100644 --- a/src/main/groovy/groovyx/javafx/factory/GridConstraint.groovy +++ b/src/main/groovy/groovyx/javafx/factory/GridConstraint.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/GridConstraintFactory.groovy b/src/main/groovy/groovyx/javafx/factory/GridConstraintFactory.groovy index 6e2b943..191f9da 100644 --- a/src/main/groovy/groovyx/javafx/factory/GridConstraintFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/GridConstraintFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/GridRow.groovy b/src/main/groovy/groovyx/javafx/factory/GridRow.groovy index e607974..61b7ed4 100644 --- a/src/main/groovy/groovyx/javafx/factory/GridRow.groovy +++ b/src/main/groovy/groovyx/javafx/factory/GridRow.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/GridRowColumnFactory.groovy b/src/main/groovy/groovyx/javafx/factory/GridRowColumnFactory.groovy index a836716..2db4592 100644 --- a/src/main/groovy/groovyx/javafx/factory/GridRowColumnFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/GridRowColumnFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ImageFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ImageFactory.groovy index 08e753a..f7f09ee 100644 --- a/src/main/groovy/groovyx/javafx/factory/ImageFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ImageFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ImageViewFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ImageViewFactory.groovy index 46e9627..1597c6d 100644 --- a/src/main/groovy/groovyx/javafx/factory/ImageViewFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ImageViewFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/LabeledFactory.groovy b/src/main/groovy/groovyx/javafx/factory/LabeledFactory.groovy index 7d2980c..266d7a2 100644 --- a/src/main/groovy/groovyx/javafx/factory/LabeledFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/LabeledFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/LinearGradientFactory.groovy b/src/main/groovy/groovyx/javafx/factory/LinearGradientFactory.groovy index b917dfd..0db6e33 100644 --- a/src/main/groovy/groovyx/javafx/factory/LinearGradientFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/LinearGradientFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ListViewFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ListViewFactory.groovy index 97a7573..4acc6a2 100644 --- a/src/main/groovy/groovyx/javafx/factory/ListViewFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ListViewFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/MediaPlayerFactory.groovy b/src/main/groovy/groovyx/javafx/factory/MediaPlayerFactory.groovy index e4d526a..361851d 100644 --- a/src/main/groovy/groovyx/javafx/factory/MediaPlayerFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/MediaPlayerFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/MediaViewFactory.groovy b/src/main/groovy/groovyx/javafx/factory/MediaViewFactory.groovy index 13c14bd..18acbee 100644 --- a/src/main/groovy/groovyx/javafx/factory/MediaViewFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/MediaViewFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/MenuFactory.groovy b/src/main/groovy/groovyx/javafx/factory/MenuFactory.groovy index 88ba8da..ccb7fa3 100644 --- a/src/main/groovy/groovyx/javafx/factory/MenuFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/MenuFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/MenuItemFactory.groovy b/src/main/groovy/groovyx/javafx/factory/MenuItemFactory.groovy index 9c502f6..0996f64 100644 --- a/src/main/groovy/groovyx/javafx/factory/MenuItemFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/MenuItemFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/NodeFactory.groovy b/src/main/groovy/groovyx/javafx/factory/NodeFactory.groovy index cc7fdea..44f552d 100644 --- a/src/main/groovy/groovyx/javafx/factory/NodeFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/NodeFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/PathElementFactory.groovy b/src/main/groovy/groovyx/javafx/factory/PathElementFactory.groovy index b6734e4..ac1d1fa 100644 --- a/src/main/groovy/groovyx/javafx/factory/PathElementFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/PathElementFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/PathFactory.groovy b/src/main/groovy/groovyx/javafx/factory/PathFactory.groovy index 9832ac5..ba54fc9 100644 --- a/src/main/groovy/groovyx/javafx/factory/PathFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/PathFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/PieChartFactory.groovy b/src/main/groovy/groovyx/javafx/factory/PieChartFactory.groovy index 0a9707d..ceb51b0 100644 --- a/src/main/groovy/groovyx/javafx/factory/PieChartFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/PieChartFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/RadialGradientFactory.groovy b/src/main/groovy/groovyx/javafx/factory/RadialGradientFactory.groovy index 48d2286..b2a33a2 100644 --- a/src/main/groovy/groovyx/javafx/factory/RadialGradientFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/RadialGradientFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ResourceFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ResourceFactory.groovy index 7eb54c6..b55ff70 100644 --- a/src/main/groovy/groovyx/javafx/factory/ResourceFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ResourceFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/RowColumnInfo.groovy b/src/main/groovy/groovyx/javafx/factory/RowColumnInfo.groovy index f34c64e..016020d 100644 --- a/src/main/groovy/groovyx/javafx/factory/RowColumnInfo.groovy +++ b/src/main/groovy/groovyx/javafx/factory/RowColumnInfo.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/SceneFactory.groovy b/src/main/groovy/groovyx/javafx/factory/SceneFactory.groovy index fc362c2..c51d985 100644 --- a/src/main/groovy/groovyx/javafx/factory/SceneFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/SceneFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/ShapeFactory.groovy b/src/main/groovy/groovyx/javafx/factory/ShapeFactory.groovy index c2d645f..98f0b64 100644 --- a/src/main/groovy/groovyx/javafx/factory/ShapeFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/ShapeFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/StageFactory.groovy b/src/main/groovy/groovyx/javafx/factory/StageFactory.groovy index f147347..0d5f86c 100644 --- a/src/main/groovy/groovyx/javafx/factory/StageFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/StageFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/StopFactory.groovy b/src/main/groovy/groovyx/javafx/factory/StopFactory.groovy index 5a3d9b9..f656023 100644 --- a/src/main/groovy/groovyx/javafx/factory/StopFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/StopFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/StrokeFactory.groovy b/src/main/groovy/groovyx/javafx/factory/StrokeFactory.groovy index 52d9684..14eedcd 100644 --- a/src/main/groovy/groovyx/javafx/factory/StrokeFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/StrokeFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/StylesheetFactory.groovy b/src/main/groovy/groovyx/javafx/factory/StylesheetFactory.groovy index eefd6ed..12ead77 100644 --- a/src/main/groovy/groovyx/javafx/factory/StylesheetFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/StylesheetFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TabFactory.groovy b/src/main/groovy/groovyx/javafx/factory/TabFactory.groovy index 4aeef18..7083450 100644 --- a/src/main/groovy/groovyx/javafx/factory/TabFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TabFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TableCellFactory.groovy b/src/main/groovy/groovyx/javafx/factory/TableCellFactory.groovy index b055997..88700d9 100644 --- a/src/main/groovy/groovyx/javafx/factory/TableCellFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TableCellFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TableFactory.groovy b/src/main/groovy/groovyx/javafx/factory/TableFactory.groovy index b054209..f15022f 100644 --- a/src/main/groovy/groovyx/javafx/factory/TableFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TableFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TableRowFactory.groovy b/src/main/groovy/groovyx/javafx/factory/TableRowFactory.groovy index 871fa8b..8a2a952 100644 --- a/src/main/groovy/groovyx/javafx/factory/TableRowFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TableRowFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TextFactory.groovy b/src/main/groovy/groovyx/javafx/factory/TextFactory.groovy index 474bbe2..f0109e1 100644 --- a/src/main/groovy/groovyx/javafx/factory/TextFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TextFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TitledContent.groovy b/src/main/groovy/groovyx/javafx/factory/TitledContent.groovy index 305e6f3..bde4a8a 100644 --- a/src/main/groovy/groovyx/javafx/factory/TitledContent.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TitledContent.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TitledFactory.groovy b/src/main/groovy/groovyx/javafx/factory/TitledFactory.groovy index 239b1e4..06584c7 100644 --- a/src/main/groovy/groovyx/javafx/factory/TitledFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TitledFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TitledNode.groovy b/src/main/groovy/groovyx/javafx/factory/TitledNode.groovy index af10b50..b34dc20 100644 --- a/src/main/groovy/groovyx/javafx/factory/TitledNode.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TitledNode.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TransformFactory.groovy b/src/main/groovy/groovyx/javafx/factory/TransformFactory.groovy index 3dd0720..549f951 100644 --- a/src/main/groovy/groovyx/javafx/factory/TransformFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TransformFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TransitionFactory.groovy b/src/main/groovy/groovyx/javafx/factory/TransitionFactory.groovy index 4eecdf3..e6ecbbd 100644 --- a/src/main/groovy/groovyx/javafx/factory/TransitionFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TransitionFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/TreeItemFactory.groovy b/src/main/groovy/groovyx/javafx/factory/TreeItemFactory.groovy index 7e2b5eb..6f37ac6 100644 --- a/src/main/groovy/groovyx/javafx/factory/TreeItemFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/TreeItemFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,11 +17,11 @@ */ package groovyx.javafx.factory -import groovyx.javafx.JdkUtil + import groovyx.javafx.event.GroovyEventHandler import javafx.event.EventHandler import javafx.scene.Node -import javafx.scene.control.TreeItem; +import javafx.scene.control.TreeItem /** * @author jimclarke @@ -36,14 +38,9 @@ class TreeItemFactory extends AbstractFXBeanFactory { "onGraphicChanged" : TreeItem.GRAPHIC_CHANGED_EVENT, "onTreeNotification" : TreeItem.TREE_NOTIFICATION_EVENT, "onValueChanged" : TreeItem.VALUE_CHANGED_EVENT - ] - if (JdkUtil.jdkIsBefore8()) { - String constName = "TREE_ITEM_COUNT_CHANGE_EVENT" - treeItemEvents.onTreeItemCountChange = TreeItem."$constName" - } else { - String constName = "EXPANDED_ITEM_COUNT_CHANGE_EVENT" - treeItemEvents.onExpandedItemCountChange = TreeItem."$constName" - } + ] + String constName = "EXPANDED_ITEM_COUNT_CHANGE_EVENT" + treeItemEvents.onExpandedItemCountChange = TreeItem."$constName" } public TreeItemFactory() { diff --git a/src/main/groovy/groovyx/javafx/factory/WebFactory.groovy b/src/main/groovy/groovyx/javafx/factory/WebFactory.groovy index b9fc9d8..0c82145 100644 --- a/src/main/groovy/groovyx/javafx/factory/WebFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/WebFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/XYChartFactory.groovy b/src/main/groovy/groovyx/javafx/factory/XYChartFactory.groovy index 2c4b106..62fdda6 100644 --- a/src/main/groovy/groovyx/javafx/factory/XYChartFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/XYChartFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/XYSeriesFactory.groovy b/src/main/groovy/groovyx/javafx/factory/XYSeriesFactory.groovy index 54aa799..fd6514d 100644 --- a/src/main/groovy/groovyx/javafx/factory/XYSeriesFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/XYSeriesFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/animation/Binding.groovy b/src/main/groovy/groovyx/javafx/factory/animation/Binding.groovy index 3a6beaa..3cb44b8 100644 --- a/src/main/groovy/groovyx/javafx/factory/animation/Binding.groovy +++ b/src/main/groovy/groovyx/javafx/factory/animation/Binding.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/animation/Change.groovy b/src/main/groovy/groovyx/javafx/factory/animation/Change.groovy index 31a27f2..443b441 100644 --- a/src/main/groovy/groovyx/javafx/factory/animation/Change.groovy +++ b/src/main/groovy/groovyx/javafx/factory/animation/Change.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/animation/GroovyVariable.groovy b/src/main/groovy/groovyx/javafx/factory/animation/GroovyVariable.groovy index 0f35cf8..3ebc7e1 100644 --- a/src/main/groovy/groovyx/javafx/factory/animation/GroovyVariable.groovy +++ b/src/main/groovy/groovyx/javafx/factory/animation/GroovyVariable.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/animation/KeyFrameFactory.groovy b/src/main/groovy/groovyx/javafx/factory/animation/KeyFrameFactory.groovy index 2104f7d..51208a9 100644 --- a/src/main/groovy/groovyx/javafx/factory/animation/KeyFrameFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/animation/KeyFrameFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/animation/KeyFrameWrapper.groovy b/src/main/groovy/groovyx/javafx/factory/animation/KeyFrameWrapper.groovy index 2f2ade5..45dec16 100644 --- a/src/main/groovy/groovyx/javafx/factory/animation/KeyFrameWrapper.groovy +++ b/src/main/groovy/groovyx/javafx/factory/animation/KeyFrameWrapper.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/animation/KeyValueFactory.groovy b/src/main/groovy/groovyx/javafx/factory/animation/KeyValueFactory.groovy index d2c2ffa..7e4a3ca 100644 --- a/src/main/groovy/groovyx/javafx/factory/animation/KeyValueFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/animation/KeyValueFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/animation/KeyValueSubFactory.groovy b/src/main/groovy/groovyx/javafx/factory/animation/KeyValueSubFactory.groovy index d1df45f..02b825c 100644 --- a/src/main/groovy/groovyx/javafx/factory/animation/KeyValueSubFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/animation/KeyValueSubFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/animation/TimelineFactory.groovy b/src/main/groovy/groovyx/javafx/factory/animation/TimelineFactory.groovy index 5c1b7ff..45f9429 100644 --- a/src/main/groovy/groovyx/javafx/factory/animation/TimelineFactory.groovy +++ b/src/main/groovy/groovyx/javafx/factory/animation/TimelineFactory.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/groovyx/javafx/factory/animation/VarRef.groovy b/src/main/groovy/groovyx/javafx/factory/animation/VarRef.groovy index 0360425..8d18013 100644 --- a/src/main/groovy/groovyx/javafx/factory/animation/VarRef.groovy +++ b/src/main/groovy/groovyx/javafx/factory/animation/VarRef.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/idesupport/GDSLInfo.groovy b/src/main/groovy/idesupport/GDSLInfo.groovy index 6b863d6..8081286 100644 --- a/src/main/groovy/idesupport/GDSLInfo.groovy +++ b/src/main/groovy/idesupport/GDSLInfo.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/main/groovy/idesupport/groovyfx.gdsl b/src/main/groovy/idesupport/groovyfx.gdsl index b35f4e4..8d57601 100644 --- a/src/main/groovy/idesupport/groovyfx.gdsl +++ b/src/main/groovy/idesupport/groovyfx.gdsl @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -229,11 +231,7 @@ private void contributeControls(delegate) { delegate.method(name: 'onEditCommit', type: 'groovyx.javafx.ClosureEventHandler', params: [handler: {}]) delegate.method(name: 'onEditStart', type: 'groovyx.javafx.ClosureEventHandler', params: [handler: {}]) - if (groovyx.javafx.JdkUtil.jdkIsBefore8()) { - delegate.method(name: 'onTreeItemCountChange', type: 'groovyx.javafx.ClosureEventHandler', params: [handler: {}]) - } else { - delegate.method(name: 'onExpandedItemCountChange', type: 'groovyx.javafx.ClosureEventHandler', params: [handler: {}]) - } + delegate.method(name: 'onExpandedItemCountChange', type: 'groovyx.javafx.ClosureEventHandler', params: [handler: {}]) } private void contributeCharts(delegate) { diff --git a/src/test/groovy/groovyx/javafx/GroovyFXTest.groovy b/src/test/groovy/groovyx/javafx/GroovyFXTest.groovy index 742edb7..1f69482 100644 --- a/src/test/groovy/groovyx/javafx/GroovyFXTest.groovy +++ b/src/test/groovy/groovyx/javafx/GroovyFXTest.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/test/groovy/groovyx/javafx/SceneGraphBuilderTest.groovy b/src/test/groovy/groovyx/javafx/SceneGraphBuilderTest.groovy index 6917313..52edd74 100644 --- a/src/test/groovy/groovyx/javafx/SceneGraphBuilderTest.groovy +++ b/src/test/groovy/groovyx/javafx/SceneGraphBuilderTest.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/test/groovy/groovyx/javafx/beans/FXBindableTest.groovy b/src/test/groovy/groovyx/javafx/beans/FXBindableTest.groovy index 3c35577..dbe8eea 100644 --- a/src/test/groovy/groovyx/javafx/beans/FXBindableTest.groovy +++ b/src/test/groovy/groovyx/javafx/beans/FXBindableTest.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/test/groovy/groovyx/javafx/extension/NumberExtensionSpec.groovy b/src/test/groovy/groovyx/javafx/extension/NumberExtensionSpec.groovy index 6bd266b..c0d541b 100644 --- a/src/test/groovy/groovyx/javafx/extension/NumberExtensionSpec.groovy +++ b/src/test/groovy/groovyx/javafx/extension/NumberExtensionSpec.groovy @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Apache-2.0 + * * Copyright 2011-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License");