From 750ed00e11d37f45d14986dc6da8c6df64c857fd Mon Sep 17 00:00:00 2001 From: mkpaz Date: Tue, 30 May 2023 20:34:16 +0400 Subject: [PATCH] Add missing license headers --- base/src/main/java/atlantafx/base/theme/Tweaks.java | 2 ++ base/src/test/java/atlantafx/base/JavaFXTest.java | 2 ++ base/src/test/java/atlantafx/base/layout/DeckPaneTest.java | 2 ++ base/src/test/java/atlantafx/base/layout/InputGroupTest.java | 2 ++ base/src/test/java/atlantafx/base/theme/StylesTest.java | 2 ++ base/src/test/java/atlantafx/base/util/BBCodeParserTest.java | 2 ++ .../test/java/atlantafx/base/util/MaskTextFormatterTest.java | 2 ++ .../java/atlantafx/base/util/PasswordTextFormatterTest.java | 2 ++ sampler/src/main/java/atlantafx/sampler/event/PageEvent.java | 2 ++ sampler/src/main/java/atlantafx/sampler/event/ThemeEvent.java | 2 ++ sampler/src/main/java/atlantafx/sampler/fake/domain/Metric.java | 2 ++ sampler/src/main/java/atlantafx/sampler/layout/ThemeDialog.java | 2 ++ .../src/main/java/atlantafx/sampler/layout/ThemeThumbnail.java | 2 ++ .../main/java/atlantafx/sampler/page/BBSyntaxHighlighter.java | 2 ++ .../main/java/atlantafx/sampler/page/components/CardPage.java | 2 ++ .../java/atlantafx/sampler/page/components/MessagePage.java | 2 ++ .../main/java/atlantafx/sampler/page/components/TilePage.java | 2 ++ .../main/java/atlantafx/sampler/page/general/IconBrowser.java | 2 ++ .../atlantafx/sampler/page/general/SceneBuilderDialogModel.java | 2 ++ .../atlantafx/sampler/page/general/SceneBuilderInstaller.java | 2 ++ .../main/java/atlantafx/sampler/page/showcase/ShowcasePage.java | 2 ++ sampler/src/main/java/atlantafx/sampler/theme/AccentColor.java | 2 ++ .../main/java/atlantafx/sampler/theme/SceneBuilderTheme.java | 2 ++ sampler/src/main/java/atlantafx/sampler/util/PlatformUtils.java | 2 ++ .../sampler/page/general/SceneBuilderInstallerTest.java | 2 ++ 25 files changed, 50 insertions(+) diff --git a/base/src/main/java/atlantafx/base/theme/Tweaks.java b/base/src/main/java/atlantafx/base/theme/Tweaks.java index 65f145d..aea48a5 100644 --- a/base/src/main/java/atlantafx/base/theme/Tweaks.java +++ b/base/src/main/java/atlantafx/base/theme/Tweaks.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.base.theme; /** diff --git a/base/src/test/java/atlantafx/base/JavaFXTest.java b/base/src/test/java/atlantafx/base/JavaFXTest.java index 1aedce1..be17490 100644 --- a/base/src/test/java/atlantafx/base/JavaFXTest.java +++ b/base/src/test/java/atlantafx/base/JavaFXTest.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.base; import javafx.application.Platform; diff --git a/base/src/test/java/atlantafx/base/layout/DeckPaneTest.java b/base/src/test/java/atlantafx/base/layout/DeckPaneTest.java index 9775d9a..1e4d5d9 100644 --- a/base/src/test/java/atlantafx/base/layout/DeckPaneTest.java +++ b/base/src/test/java/atlantafx/base/layout/DeckPaneTest.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.base.layout; import static org.assertj.core.api.Assertions.assertThat; diff --git a/base/src/test/java/atlantafx/base/layout/InputGroupTest.java b/base/src/test/java/atlantafx/base/layout/InputGroupTest.java index fe54d9d..673dccd 100644 --- a/base/src/test/java/atlantafx/base/layout/InputGroupTest.java +++ b/base/src/test/java/atlantafx/base/layout/InputGroupTest.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.base.layout; import atlantafx.base.theme.Styles; diff --git a/base/src/test/java/atlantafx/base/theme/StylesTest.java b/base/src/test/java/atlantafx/base/theme/StylesTest.java index 263fc46..23e5d97 100644 --- a/base/src/test/java/atlantafx/base/theme/StylesTest.java +++ b/base/src/test/java/atlantafx/base/theme/StylesTest.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.base.theme; import static org.assertj.core.api.Assertions.assertThat; diff --git a/base/src/test/java/atlantafx/base/util/BBCodeParserTest.java b/base/src/test/java/atlantafx/base/util/BBCodeParserTest.java index d2f4c9b..c7bd095 100644 --- a/base/src/test/java/atlantafx/base/util/BBCodeParserTest.java +++ b/base/src/test/java/atlantafx/base/util/BBCodeParserTest.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.base.util; import static org.assertj.core.api.Assertions.assertThat; diff --git a/base/src/test/java/atlantafx/base/util/MaskTextFormatterTest.java b/base/src/test/java/atlantafx/base/util/MaskTextFormatterTest.java index df0b03e..5ef5a1f 100644 --- a/base/src/test/java/atlantafx/base/util/MaskTextFormatterTest.java +++ b/base/src/test/java/atlantafx/base/util/MaskTextFormatterTest.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.base.util; import static atlantafx.base.util.MaskTextFormatter.createPlaceholderMask; diff --git a/base/src/test/java/atlantafx/base/util/PasswordTextFormatterTest.java b/base/src/test/java/atlantafx/base/util/PasswordTextFormatterTest.java index 882d31a..2debb86 100644 --- a/base/src/test/java/atlantafx/base/util/PasswordTextFormatterTest.java +++ b/base/src/test/java/atlantafx/base/util/PasswordTextFormatterTest.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.base.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/sampler/src/main/java/atlantafx/sampler/event/PageEvent.java b/sampler/src/main/java/atlantafx/sampler/event/PageEvent.java index adb9d95..694ba13 100644 --- a/sampler/src/main/java/atlantafx/sampler/event/PageEvent.java +++ b/sampler/src/main/java/atlantafx/sampler/event/PageEvent.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.event; import java.util.Objects; diff --git a/sampler/src/main/java/atlantafx/sampler/event/ThemeEvent.java b/sampler/src/main/java/atlantafx/sampler/event/ThemeEvent.java index e6cccdd..7d044aa 100644 --- a/sampler/src/main/java/atlantafx/sampler/event/ThemeEvent.java +++ b/sampler/src/main/java/atlantafx/sampler/event/ThemeEvent.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.event; public final class ThemeEvent extends Event { diff --git a/sampler/src/main/java/atlantafx/sampler/fake/domain/Metric.java b/sampler/src/main/java/atlantafx/sampler/fake/domain/Metric.java index 1d119a1..ae2aac5 100644 --- a/sampler/src/main/java/atlantafx/sampler/fake/domain/Metric.java +++ b/sampler/src/main/java/atlantafx/sampler/fake/domain/Metric.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.fake.domain; import javafx.beans.property.SimpleStringProperty; diff --git a/sampler/src/main/java/atlantafx/sampler/layout/ThemeDialog.java b/sampler/src/main/java/atlantafx/sampler/layout/ThemeDialog.java index ca93084..f382db8 100644 --- a/sampler/src/main/java/atlantafx/sampler/layout/ThemeDialog.java +++ b/sampler/src/main/java/atlantafx/sampler/layout/ThemeDialog.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.layout; import atlantafx.sampler.theme.SamplerTheme; diff --git a/sampler/src/main/java/atlantafx/sampler/layout/ThemeThumbnail.java b/sampler/src/main/java/atlantafx/sampler/layout/ThemeThumbnail.java index 725f2cd..fabbf61 100644 --- a/sampler/src/main/java/atlantafx/sampler/layout/ThemeThumbnail.java +++ b/sampler/src/main/java/atlantafx/sampler/layout/ThemeThumbnail.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.layout; import atlantafx.base.theme.Styles; diff --git a/sampler/src/main/java/atlantafx/sampler/page/BBSyntaxHighlighter.java b/sampler/src/main/java/atlantafx/sampler/page/BBSyntaxHighlighter.java index dcc39cf..b76c3b1 100644 --- a/sampler/src/main/java/atlantafx/sampler/page/BBSyntaxHighlighter.java +++ b/sampler/src/main/java/atlantafx/sampler/page/BBSyntaxHighlighter.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.page; import atlantafx.base.util.BBCodeParser; diff --git a/sampler/src/main/java/atlantafx/sampler/page/components/CardPage.java b/sampler/src/main/java/atlantafx/sampler/page/components/CardPage.java index 98609f9..d4af8cb 100644 --- a/sampler/src/main/java/atlantafx/sampler/page/components/CardPage.java +++ b/sampler/src/main/java/atlantafx/sampler/page/components/CardPage.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.page.components; import atlantafx.base.controls.Card; diff --git a/sampler/src/main/java/atlantafx/sampler/page/components/MessagePage.java b/sampler/src/main/java/atlantafx/sampler/page/components/MessagePage.java index 86711e4..50b8945 100644 --- a/sampler/src/main/java/atlantafx/sampler/page/components/MessagePage.java +++ b/sampler/src/main/java/atlantafx/sampler/page/components/MessagePage.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.page.components; import atlantafx.base.theme.Styles; diff --git a/sampler/src/main/java/atlantafx/sampler/page/components/TilePage.java b/sampler/src/main/java/atlantafx/sampler/page/components/TilePage.java index e35a0cc..822ce30 100644 --- a/sampler/src/main/java/atlantafx/sampler/page/components/TilePage.java +++ b/sampler/src/main/java/atlantafx/sampler/page/components/TilePage.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.page.components; import atlantafx.base.controls.PasswordTextField; diff --git a/sampler/src/main/java/atlantafx/sampler/page/general/IconBrowser.java b/sampler/src/main/java/atlantafx/sampler/page/general/IconBrowser.java index e34aef6..71749b6 100644 --- a/sampler/src/main/java/atlantafx/sampler/page/general/IconBrowser.java +++ b/sampler/src/main/java/atlantafx/sampler/page/general/IconBrowser.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.page.general; import static atlantafx.base.theme.Styles.TEXT_SMALL; diff --git a/sampler/src/main/java/atlantafx/sampler/page/general/SceneBuilderDialogModel.java b/sampler/src/main/java/atlantafx/sampler/page/general/SceneBuilderDialogModel.java index baa41d6..395f1ca 100644 --- a/sampler/src/main/java/atlantafx/sampler/page/general/SceneBuilderDialogModel.java +++ b/sampler/src/main/java/atlantafx/sampler/page/general/SceneBuilderDialogModel.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.page.general; import atlantafx.base.theme.PrimerLight; diff --git a/sampler/src/main/java/atlantafx/sampler/page/general/SceneBuilderInstaller.java b/sampler/src/main/java/atlantafx/sampler/page/general/SceneBuilderInstaller.java index bfd2642..5f16d48 100644 --- a/sampler/src/main/java/atlantafx/sampler/page/general/SceneBuilderInstaller.java +++ b/sampler/src/main/java/atlantafx/sampler/page/general/SceneBuilderInstaller.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.page.general; import static java.nio.charset.StandardCharsets.UTF_8; diff --git a/sampler/src/main/java/atlantafx/sampler/page/showcase/ShowcasePage.java b/sampler/src/main/java/atlantafx/sampler/page/showcase/ShowcasePage.java index 260c561..8e8dde7 100644 --- a/sampler/src/main/java/atlantafx/sampler/page/showcase/ShowcasePage.java +++ b/sampler/src/main/java/atlantafx/sampler/page/showcase/ShowcasePage.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.page.showcase; import atlantafx.base.controls.Spacer; diff --git a/sampler/src/main/java/atlantafx/sampler/theme/AccentColor.java b/sampler/src/main/java/atlantafx/sampler/theme/AccentColor.java index f4dd5b2..b1075b6 100644 --- a/sampler/src/main/java/atlantafx/sampler/theme/AccentColor.java +++ b/sampler/src/main/java/atlantafx/sampler/theme/AccentColor.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.theme; import javafx.css.PseudoClass; diff --git a/sampler/src/main/java/atlantafx/sampler/theme/SceneBuilderTheme.java b/sampler/src/main/java/atlantafx/sampler/theme/SceneBuilderTheme.java index e1e86ae..0fe48ad 100644 --- a/sampler/src/main/java/atlantafx/sampler/theme/SceneBuilderTheme.java +++ b/sampler/src/main/java/atlantafx/sampler/theme/SceneBuilderTheme.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.theme; import java.util.List; diff --git a/sampler/src/main/java/atlantafx/sampler/util/PlatformUtils.java b/sampler/src/main/java/atlantafx/sampler/util/PlatformUtils.java index 47d10d8..d07cb7b 100644 --- a/sampler/src/main/java/atlantafx/sampler/util/PlatformUtils.java +++ b/sampler/src/main/java/atlantafx/sampler/util/PlatformUtils.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.util; import javafx.scene.input.Clipboard; diff --git a/sampler/src/test/java/atlantafx/sampler/page/general/SceneBuilderInstallerTest.java b/sampler/src/test/java/atlantafx/sampler/page/general/SceneBuilderInstallerTest.java index acfe8f9..44371ec 100644 --- a/sampler/src/test/java/atlantafx/sampler/page/general/SceneBuilderInstallerTest.java +++ b/sampler/src/test/java/atlantafx/sampler/page/general/SceneBuilderInstallerTest.java @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + package atlantafx.sampler.page.general; import atlantafx.base.theme.PrimerDark;