From 7d11fbd6dc5013bdbfefa681240c98974f0bdc4b Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Mon, 12 Mar 2018 12:24:38 +0100 Subject: [PATCH] Add AGPL license header to Java sources where missing --- src/main/java/bisq/desktop/common/UITimer.java | 17 +++++++++++++++++ .../components/AddressWithIconAndDirection.java | 17 +++++++++++++++++ .../desktop/components/AutoTooltipButton.java | 17 +++++++++++++++++ .../desktop/components/AutoTooltipCheckBox.java | 17 +++++++++++++++++ .../desktop/components/AutoTooltipLabel.java | 17 +++++++++++++++++ .../components/AutoTooltipRadioButton.java | 17 +++++++++++++++++ .../components/AutoTooltipTableColumn.java | 17 +++++++++++++++++ .../components/AutoTooltipToggleButton.java | 17 +++++++++++++++++ .../bisq/desktop/components/BusyAnimation.java | 17 +++++++++++++++++ .../ColoredDecimalPlacesWithZerosText.java | 17 +++++++++++++++++ .../desktop/components/HyperlinkWithIcon.java | 17 +++++++++++++++++ .../bisq/desktop/components/InfoTextField.java | 17 +++++++++++++++++ .../bisq/desktop/components/PeerInfoIcon.java | 17 +++++++++++++++++ .../bisq/desktop/components/SearchComboBox.java | 17 +++++++++++++++++ .../desktop/components/SeparatedPhaseBars.java | 17 +++++++++++++++++ .../bisq/desktop/components/TooltipUtil.java | 17 +++++++++++++++++ .../indicator/TxConfidenceIndicator.java | 17 +++++++++++++++++ .../StaticProgressIndicatorBehavior.java | 17 +++++++++++++++++ .../skin/StaticProgressIndicatorSkin.java | 17 +++++++++++++++++ .../desktop/main/PriceFeedComboBoxItem.java | 17 +++++++++++++++++ .../desktop/main/market/spread/SpreadItem.java | 17 +++++++++++++++++ .../main/market/trades/charts/price/Candle.java | 17 +++++++++++++++++ .../trades/charts/price/CandleStickChart.java | 17 +++++++++++++++++ .../trades/charts/price/CandleTooltip.java | 17 +++++++++++++++++ .../overlays/editor/PeerInfoWithTagEditor.java | 17 +++++++++++++++++ .../overlays/notifications/Notification.java | 17 +++++++++++++++++ .../notifications/NotificationCenter.java | 17 +++++++++++++++++ .../notifications/NotificationManager.java | 17 +++++++++++++++++ .../main/overlays/popups/PopupManager.java | 17 +++++++++++++++++ .../main/overlays/windows/QRCodeWindow.java | 17 +++++++++++++++++ .../main/overlays/windows/TacWindow.java | 17 +++++++++++++++++ .../util/validation/params/ACHParams.java | 17 +++++++++++++++++ .../util/validation/params/TerracoinParams.java | 17 +++++++++++++++++ .../util/validation/params/WACoinsParams.java | 17 +++++++++++++++++ .../util/validation/params/WMCCParams.java | 17 +++++++++++++++++ .../params/btc/AbstractBitcoinNetParams.java | 17 +++++++++++++++++ .../util/validation/params/btc/BTGParams.java | 17 +++++++++++++++++ .../btc/BtcMainNetParamsForValidation.java | 17 +++++++++++++++++ .../util/validation/params/btc/Networks.java | 17 +++++++++++++++++ .../bisq/common/locale/TradeCurrencyMakers.java | 17 +++++++++++++++++ .../java/bisq/common/monetary/PriceMaker.java | 17 +++++++++++++++++ .../java/bisq/common/monetary/VolumeMaker.java | 17 +++++++++++++++++ src/test/java/bisq/core/offer/OfferMaker.java | 17 +++++++++++++++++ .../java/bisq/core/user/PreferenceMakers.java | 17 +++++++++++++++++ .../ColoredDecimalPlacesWithZerosTextTest.java | 17 +++++++++++++++++ .../transactions/DisplayedTransactionsTest.java | 17 +++++++++++++++++ .../ObservableListDecoratorTest.java | 17 +++++++++++++++++ .../TransactionAwareTradableFactoryTest.java | 17 +++++++++++++++++ .../transactions/TransactionAwareTradeTest.java | 17 +++++++++++++++++ .../offerbook/OfferBookChartViewModelTest.java | 17 +++++++++++++++++ .../main/market/spread/SpreadViewModelTest.java | 17 +++++++++++++++++ .../trades/TradesChartsViewModelTest.java | 17 +++++++++++++++++ .../createoffer/CreateOfferViewModelTest.java | 17 +++++++++++++++++ .../offer/offerbook/OfferBookListItemMaker.java | 17 +++++++++++++++++ .../offer/offerbook/OfferBookViewModelTest.java | 17 +++++++++++++++++ .../desktop/util/CurrencyListItemMakers.java | 17 +++++++++++++++++ .../bisq/desktop/util/CurrencyListTest.java | 17 +++++++++++++++++ .../java/bisq/desktop/util/GUIUtilTest.java | 17 +++++++++++++++++ src/test/java/org/bitcoinj/core/CoinMaker.java | 17 +++++++++++++++++ 59 files changed, 1003 insertions(+) diff --git a/src/main/java/bisq/desktop/common/UITimer.java b/src/main/java/bisq/desktop/common/UITimer.java index 2826b5d237..4cfd1ec843 100644 --- a/src/main/java/bisq/desktop/common/UITimer.java +++ b/src/main/java/bisq/desktop/common/UITimer.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.common; import bisq.common.Timer; diff --git a/src/main/java/bisq/desktop/components/AddressWithIconAndDirection.java b/src/main/java/bisq/desktop/components/AddressWithIconAndDirection.java index eb77801335..a0db7946f2 100644 --- a/src/main/java/bisq/desktop/components/AddressWithIconAndDirection.java +++ b/src/main/java/bisq/desktop/components/AddressWithIconAndDirection.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import de.jensd.fx.fontawesome.AwesomeDude; diff --git a/src/main/java/bisq/desktop/components/AutoTooltipButton.java b/src/main/java/bisq/desktop/components/AutoTooltipButton.java index d6425195b5..d7f312e59f 100644 --- a/src/main/java/bisq/desktop/components/AutoTooltipButton.java +++ b/src/main/java/bisq/desktop/components/AutoTooltipButton.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import com.sun.javafx.scene.control.skin.ButtonSkin; diff --git a/src/main/java/bisq/desktop/components/AutoTooltipCheckBox.java b/src/main/java/bisq/desktop/components/AutoTooltipCheckBox.java index 71d4dfba66..087b5e9123 100644 --- a/src/main/java/bisq/desktop/components/AutoTooltipCheckBox.java +++ b/src/main/java/bisq/desktop/components/AutoTooltipCheckBox.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import com.sun.javafx.scene.control.skin.CheckBoxSkin; diff --git a/src/main/java/bisq/desktop/components/AutoTooltipLabel.java b/src/main/java/bisq/desktop/components/AutoTooltipLabel.java index aef323df35..77d5d9ef88 100644 --- a/src/main/java/bisq/desktop/components/AutoTooltipLabel.java +++ b/src/main/java/bisq/desktop/components/AutoTooltipLabel.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import com.sun.javafx.scene.control.skin.LabelSkin; diff --git a/src/main/java/bisq/desktop/components/AutoTooltipRadioButton.java b/src/main/java/bisq/desktop/components/AutoTooltipRadioButton.java index b873ce4483..a486e055b0 100644 --- a/src/main/java/bisq/desktop/components/AutoTooltipRadioButton.java +++ b/src/main/java/bisq/desktop/components/AutoTooltipRadioButton.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import com.sun.javafx.scene.control.skin.RadioButtonSkin; diff --git a/src/main/java/bisq/desktop/components/AutoTooltipTableColumn.java b/src/main/java/bisq/desktop/components/AutoTooltipTableColumn.java index 73fdd1ee5b..8772d1a480 100644 --- a/src/main/java/bisq/desktop/components/AutoTooltipTableColumn.java +++ b/src/main/java/bisq/desktop/components/AutoTooltipTableColumn.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import javafx.scene.control.TableColumn; diff --git a/src/main/java/bisq/desktop/components/AutoTooltipToggleButton.java b/src/main/java/bisq/desktop/components/AutoTooltipToggleButton.java index 64f9044ad8..2d167bd22b 100644 --- a/src/main/java/bisq/desktop/components/AutoTooltipToggleButton.java +++ b/src/main/java/bisq/desktop/components/AutoTooltipToggleButton.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import com.sun.javafx.scene.control.skin.ToggleButtonSkin; diff --git a/src/main/java/bisq/desktop/components/BusyAnimation.java b/src/main/java/bisq/desktop/components/BusyAnimation.java index 3bfa595d5f..363bb2744a 100644 --- a/src/main/java/bisq/desktop/components/BusyAnimation.java +++ b/src/main/java/bisq/desktop/components/BusyAnimation.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import bisq.common.Timer; diff --git a/src/main/java/bisq/desktop/components/ColoredDecimalPlacesWithZerosText.java b/src/main/java/bisq/desktop/components/ColoredDecimalPlacesWithZerosText.java index d9a839f211..a597ab226c 100644 --- a/src/main/java/bisq/desktop/components/ColoredDecimalPlacesWithZerosText.java +++ b/src/main/java/bisq/desktop/components/ColoredDecimalPlacesWithZerosText.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import bisq.common.util.Tuple2; diff --git a/src/main/java/bisq/desktop/components/HyperlinkWithIcon.java b/src/main/java/bisq/desktop/components/HyperlinkWithIcon.java index 3d7b071e74..c009ff207d 100644 --- a/src/main/java/bisq/desktop/components/HyperlinkWithIcon.java +++ b/src/main/java/bisq/desktop/components/HyperlinkWithIcon.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import de.jensd.fx.fontawesome.AwesomeDude; diff --git a/src/main/java/bisq/desktop/components/InfoTextField.java b/src/main/java/bisq/desktop/components/InfoTextField.java index 2484437b46..f33f880ef6 100644 --- a/src/main/java/bisq/desktop/components/InfoTextField.java +++ b/src/main/java/bisq/desktop/components/InfoTextField.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import de.jensd.fx.fontawesome.AwesomeDude; diff --git a/src/main/java/bisq/desktop/components/PeerInfoIcon.java b/src/main/java/bisq/desktop/components/PeerInfoIcon.java index 47e475eaa7..c363e49654 100644 --- a/src/main/java/bisq/desktop/components/PeerInfoIcon.java +++ b/src/main/java/bisq/desktop/components/PeerInfoIcon.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import bisq.common.locale.CurrencyUtil; diff --git a/src/main/java/bisq/desktop/components/SearchComboBox.java b/src/main/java/bisq/desktop/components/SearchComboBox.java index c802a7dc59..92a05675ba 100644 --- a/src/main/java/bisq/desktop/components/SearchComboBox.java +++ b/src/main/java/bisq/desktop/components/SearchComboBox.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import bisq.common.UserThread; diff --git a/src/main/java/bisq/desktop/components/SeparatedPhaseBars.java b/src/main/java/bisq/desktop/components/SeparatedPhaseBars.java index 77e3f9da2c..3821187233 100644 --- a/src/main/java/bisq/desktop/components/SeparatedPhaseBars.java +++ b/src/main/java/bisq/desktop/components/SeparatedPhaseBars.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import bisq.common.UserThread; diff --git a/src/main/java/bisq/desktop/components/TooltipUtil.java b/src/main/java/bisq/desktop/components/TooltipUtil.java index c343857ddc..31a243c04c 100644 --- a/src/main/java/bisq/desktop/components/TooltipUtil.java +++ b/src/main/java/bisq/desktop/components/TooltipUtil.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import javafx.scene.control.Labeled; diff --git a/src/main/java/bisq/desktop/components/indicator/TxConfidenceIndicator.java b/src/main/java/bisq/desktop/components/indicator/TxConfidenceIndicator.java index f341413217..1e1284a18a 100644 --- a/src/main/java/bisq/desktop/components/indicator/TxConfidenceIndicator.java +++ b/src/main/java/bisq/desktop/components/indicator/TxConfidenceIndicator.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. diff --git a/src/main/java/bisq/desktop/components/indicator/behavior/StaticProgressIndicatorBehavior.java b/src/main/java/bisq/desktop/components/indicator/behavior/StaticProgressIndicatorBehavior.java index c24b1c6a87..78fb58202a 100644 --- a/src/main/java/bisq/desktop/components/indicator/behavior/StaticProgressIndicatorBehavior.java +++ b/src/main/java/bisq/desktop/components/indicator/behavior/StaticProgressIndicatorBehavior.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. diff --git a/src/main/java/bisq/desktop/components/indicator/skin/StaticProgressIndicatorSkin.java b/src/main/java/bisq/desktop/components/indicator/skin/StaticProgressIndicatorSkin.java index 115becfb98..fadf665053 100644 --- a/src/main/java/bisq/desktop/components/indicator/skin/StaticProgressIndicatorSkin.java +++ b/src/main/java/bisq/desktop/components/indicator/skin/StaticProgressIndicatorSkin.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. diff --git a/src/main/java/bisq/desktop/main/PriceFeedComboBoxItem.java b/src/main/java/bisq/desktop/main/PriceFeedComboBoxItem.java index 97c46eee6a..1eb95dd6d8 100644 --- a/src/main/java/bisq/desktop/main/PriceFeedComboBoxItem.java +++ b/src/main/java/bisq/desktop/main/PriceFeedComboBoxItem.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main; import javafx.beans.property.SimpleStringProperty; diff --git a/src/main/java/bisq/desktop/main/market/spread/SpreadItem.java b/src/main/java/bisq/desktop/main/market/spread/SpreadItem.java index 0c6bd9b0b8..851051849b 100644 --- a/src/main/java/bisq/desktop/main/market/spread/SpreadItem.java +++ b/src/main/java/bisq/desktop/main/market/spread/SpreadItem.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.market.spread; import bisq.common.monetary.Price; diff --git a/src/main/java/bisq/desktop/main/market/trades/charts/price/Candle.java b/src/main/java/bisq/desktop/main/market/trades/charts/price/Candle.java index 1d0a4d4110..2ccc5cde4f 100644 --- a/src/main/java/bisq/desktop/main/market/trades/charts/price/Candle.java +++ b/src/main/java/bisq/desktop/main/market/trades/charts/price/Candle.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright (c) 2008, 2014, Oracle and/or its affiliates. * All rights reserved. Use is subject to license terms. diff --git a/src/main/java/bisq/desktop/main/market/trades/charts/price/CandleStickChart.java b/src/main/java/bisq/desktop/main/market/trades/charts/price/CandleStickChart.java index 70da6c820e..bcdb02f73e 100644 --- a/src/main/java/bisq/desktop/main/market/trades/charts/price/CandleStickChart.java +++ b/src/main/java/bisq/desktop/main/market/trades/charts/price/CandleStickChart.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright (c) 2008, 2014, Oracle and/or its affiliates. * All rights reserved. Use is subject to license terms. diff --git a/src/main/java/bisq/desktop/main/market/trades/charts/price/CandleTooltip.java b/src/main/java/bisq/desktop/main/market/trades/charts/price/CandleTooltip.java index e297439ce6..e1c27df664 100644 --- a/src/main/java/bisq/desktop/main/market/trades/charts/price/CandleTooltip.java +++ b/src/main/java/bisq/desktop/main/market/trades/charts/price/CandleTooltip.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright (c) 2008, 2014, Oracle and/or its affiliates. * All rights reserved. Use is subject to license terms. diff --git a/src/main/java/bisq/desktop/main/overlays/editor/PeerInfoWithTagEditor.java b/src/main/java/bisq/desktop/main/overlays/editor/PeerInfoWithTagEditor.java index e17318ab31..6c0efe847f 100644 --- a/src/main/java/bisq/desktop/main/overlays/editor/PeerInfoWithTagEditor.java +++ b/src/main/java/bisq/desktop/main/overlays/editor/PeerInfoWithTagEditor.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.overlays.editor; import bisq.common.GlobalSettings; diff --git a/src/main/java/bisq/desktop/main/overlays/notifications/Notification.java b/src/main/java/bisq/desktop/main/overlays/notifications/Notification.java index 2afa44463d..be754d3f42 100644 --- a/src/main/java/bisq/desktop/main/overlays/notifications/Notification.java +++ b/src/main/java/bisq/desktop/main/overlays/notifications/Notification.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.overlays.notifications; import bisq.common.Timer; diff --git a/src/main/java/bisq/desktop/main/overlays/notifications/NotificationCenter.java b/src/main/java/bisq/desktop/main/overlays/notifications/NotificationCenter.java index c0b9aa0292..6442e7e09c 100644 --- a/src/main/java/bisq/desktop/main/overlays/notifications/NotificationCenter.java +++ b/src/main/java/bisq/desktop/main/overlays/notifications/NotificationCenter.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.overlays.notifications; import com.google.inject.Inject; diff --git a/src/main/java/bisq/desktop/main/overlays/notifications/NotificationManager.java b/src/main/java/bisq/desktop/main/overlays/notifications/NotificationManager.java index 78d4a358f8..fc7cf9b458 100644 --- a/src/main/java/bisq/desktop/main/overlays/notifications/NotificationManager.java +++ b/src/main/java/bisq/desktop/main/overlays/notifications/NotificationManager.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.overlays.notifications; import org.slf4j.Logger; diff --git a/src/main/java/bisq/desktop/main/overlays/popups/PopupManager.java b/src/main/java/bisq/desktop/main/overlays/popups/PopupManager.java index e2196129b1..f09edba548 100644 --- a/src/main/java/bisq/desktop/main/overlays/popups/PopupManager.java +++ b/src/main/java/bisq/desktop/main/overlays/popups/PopupManager.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.overlays.popups; import org.slf4j.Logger; diff --git a/src/main/java/bisq/desktop/main/overlays/windows/QRCodeWindow.java b/src/main/java/bisq/desktop/main/overlays/windows/QRCodeWindow.java index 240fbf1542..d5feb80132 100644 --- a/src/main/java/bisq/desktop/main/overlays/windows/QRCodeWindow.java +++ b/src/main/java/bisq/desktop/main/overlays/windows/QRCodeWindow.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.overlays.windows; import bisq.common.locale.Res; diff --git a/src/main/java/bisq/desktop/main/overlays/windows/TacWindow.java b/src/main/java/bisq/desktop/main/overlays/windows/TacWindow.java index 6bf19fcc6a..a58db562df 100644 --- a/src/main/java/bisq/desktop/main/overlays/windows/TacWindow.java +++ b/src/main/java/bisq/desktop/main/overlays/windows/TacWindow.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.overlays.windows; import com.google.inject.Inject; diff --git a/src/main/java/bisq/desktop/util/validation/params/ACHParams.java b/src/main/java/bisq/desktop/util/validation/params/ACHParams.java index a960f70f09..c9c5a1f1af 100644 --- a/src/main/java/bisq/desktop/util/validation/params/ACHParams.java +++ b/src/main/java/bisq/desktop/util/validation/params/ACHParams.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright 2013 Google Inc. * Copyright 2015 Andreas Schildbach diff --git a/src/main/java/bisq/desktop/util/validation/params/TerracoinParams.java b/src/main/java/bisq/desktop/util/validation/params/TerracoinParams.java index d2cfe3d1c3..17883e4e63 100644 --- a/src/main/java/bisq/desktop/util/validation/params/TerracoinParams.java +++ b/src/main/java/bisq/desktop/util/validation/params/TerracoinParams.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.util.validation.params; import org.bitcoinj.core.*; diff --git a/src/main/java/bisq/desktop/util/validation/params/WACoinsParams.java b/src/main/java/bisq/desktop/util/validation/params/WACoinsParams.java index a50ce3aaa5..6ea6159771 100644 --- a/src/main/java/bisq/desktop/util/validation/params/WACoinsParams.java +++ b/src/main/java/bisq/desktop/util/validation/params/WACoinsParams.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.util.validation.params; import org.bitcoinj.core.*; diff --git a/src/main/java/bisq/desktop/util/validation/params/WMCCParams.java b/src/main/java/bisq/desktop/util/validation/params/WMCCParams.java index 3d4ffd1637..12a884e945 100644 --- a/src/main/java/bisq/desktop/util/validation/params/WMCCParams.java +++ b/src/main/java/bisq/desktop/util/validation/params/WMCCParams.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.util.validation.params; import org.bitcoinj.core.*; diff --git a/src/main/java/bisq/desktop/util/validation/params/btc/AbstractBitcoinNetParams.java b/src/main/java/bisq/desktop/util/validation/params/btc/AbstractBitcoinNetParams.java index c362c8dccc..22e81e13a0 100644 --- a/src/main/java/bisq/desktop/util/validation/params/btc/AbstractBitcoinNetParams.java +++ b/src/main/java/bisq/desktop/util/validation/params/btc/AbstractBitcoinNetParams.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright 2013 Google Inc. * Copyright 2015 Andreas Schildbach diff --git a/src/main/java/bisq/desktop/util/validation/params/btc/BTGParams.java b/src/main/java/bisq/desktop/util/validation/params/btc/BTGParams.java index 4cb44c7286..694c7da6c9 100644 --- a/src/main/java/bisq/desktop/util/validation/params/btc/BTGParams.java +++ b/src/main/java/bisq/desktop/util/validation/params/btc/BTGParams.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright 2013 Google Inc. * Copyright 2015 Andreas Schildbach diff --git a/src/main/java/bisq/desktop/util/validation/params/btc/BtcMainNetParamsForValidation.java b/src/main/java/bisq/desktop/util/validation/params/btc/BtcMainNetParamsForValidation.java index acfc3a2e66..567ccfcd38 100644 --- a/src/main/java/bisq/desktop/util/validation/params/btc/BtcMainNetParamsForValidation.java +++ b/src/main/java/bisq/desktop/util/validation/params/btc/BtcMainNetParamsForValidation.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright 2013 Google Inc. * Copyright 2015 Andreas Schildbach diff --git a/src/main/java/bisq/desktop/util/validation/params/btc/Networks.java b/src/main/java/bisq/desktop/util/validation/params/btc/Networks.java index bb75db870e..c38a5162f3 100644 --- a/src/main/java/bisq/desktop/util/validation/params/btc/Networks.java +++ b/src/main/java/bisq/desktop/util/validation/params/btc/Networks.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + /* * Copyright 2014 Giannis Dzegoutanis * diff --git a/src/test/java/bisq/common/locale/TradeCurrencyMakers.java b/src/test/java/bisq/common/locale/TradeCurrencyMakers.java index a27587e35e..ca3a838500 100644 --- a/src/test/java/bisq/common/locale/TradeCurrencyMakers.java +++ b/src/test/java/bisq/common/locale/TradeCurrencyMakers.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.common.locale; import com.natpryce.makeiteasy.Instantiator; diff --git a/src/test/java/bisq/common/monetary/PriceMaker.java b/src/test/java/bisq/common/monetary/PriceMaker.java index 8ed78077b7..b4c44e662c 100644 --- a/src/test/java/bisq/common/monetary/PriceMaker.java +++ b/src/test/java/bisq/common/monetary/PriceMaker.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.common.monetary; import com.natpryce.makeiteasy.Instantiator; diff --git a/src/test/java/bisq/common/monetary/VolumeMaker.java b/src/test/java/bisq/common/monetary/VolumeMaker.java index eef68bc339..58bba040d4 100644 --- a/src/test/java/bisq/common/monetary/VolumeMaker.java +++ b/src/test/java/bisq/common/monetary/VolumeMaker.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.common.monetary; import com.natpryce.makeiteasy.Instantiator; diff --git a/src/test/java/bisq/core/offer/OfferMaker.java b/src/test/java/bisq/core/offer/OfferMaker.java index e16b524152..34ca902d10 100644 --- a/src/test/java/bisq/core/offer/OfferMaker.java +++ b/src/test/java/bisq/core/offer/OfferMaker.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.core.offer; import com.natpryce.makeiteasy.Instantiator; diff --git a/src/test/java/bisq/core/user/PreferenceMakers.java b/src/test/java/bisq/core/user/PreferenceMakers.java index e6dab22c5c..7b61e15339 100644 --- a/src/test/java/bisq/core/user/PreferenceMakers.java +++ b/src/test/java/bisq/core/user/PreferenceMakers.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.core.user; import com.natpryce.makeiteasy.Instantiator; diff --git a/src/test/java/bisq/desktop/components/ColoredDecimalPlacesWithZerosTextTest.java b/src/test/java/bisq/desktop/components/ColoredDecimalPlacesWithZerosTextTest.java index 6ae7a8162f..b2956da3fa 100644 --- a/src/test/java/bisq/desktop/components/ColoredDecimalPlacesWithZerosTextTest.java +++ b/src/test/java/bisq/desktop/components/ColoredDecimalPlacesWithZerosTextTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.components; import javafx.scene.control.Label; diff --git a/src/test/java/bisq/desktop/main/funds/transactions/DisplayedTransactionsTest.java b/src/test/java/bisq/desktop/main/funds/transactions/DisplayedTransactionsTest.java index cab33b95fe..856fb6f199 100644 --- a/src/test/java/bisq/desktop/main/funds/transactions/DisplayedTransactionsTest.java +++ b/src/test/java/bisq/desktop/main/funds/transactions/DisplayedTransactionsTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.funds.transactions; import com.google.common.collect.Sets; diff --git a/src/test/java/bisq/desktop/main/funds/transactions/ObservableListDecoratorTest.java b/src/test/java/bisq/desktop/main/funds/transactions/ObservableListDecoratorTest.java index 3788cef7a4..2b2d529738 100644 --- a/src/test/java/bisq/desktop/main/funds/transactions/ObservableListDecoratorTest.java +++ b/src/test/java/bisq/desktop/main/funds/transactions/ObservableListDecoratorTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.funds.transactions; import com.google.common.collect.Lists; diff --git a/src/test/java/bisq/desktop/main/funds/transactions/TransactionAwareTradableFactoryTest.java b/src/test/java/bisq/desktop/main/funds/transactions/TransactionAwareTradableFactoryTest.java index 2e4f54a4f4..6ffd30291a 100644 --- a/src/test/java/bisq/desktop/main/funds/transactions/TransactionAwareTradableFactoryTest.java +++ b/src/test/java/bisq/desktop/main/funds/transactions/TransactionAwareTradableFactoryTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.funds.transactions; import bisq.core.arbitration.DisputeManager; diff --git a/src/test/java/bisq/desktop/main/funds/transactions/TransactionAwareTradeTest.java b/src/test/java/bisq/desktop/main/funds/transactions/TransactionAwareTradeTest.java index bd8df20f04..ece30b719f 100644 --- a/src/test/java/bisq/desktop/main/funds/transactions/TransactionAwareTradeTest.java +++ b/src/test/java/bisq/desktop/main/funds/transactions/TransactionAwareTradeTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.funds.transactions; import bisq.core.arbitration.Dispute; diff --git a/src/test/java/bisq/desktop/main/market/offerbook/OfferBookChartViewModelTest.java b/src/test/java/bisq/desktop/main/market/offerbook/OfferBookChartViewModelTest.java index 8ab4bb2541..65762bb406 100644 --- a/src/test/java/bisq/desktop/main/market/offerbook/OfferBookChartViewModelTest.java +++ b/src/test/java/bisq/desktop/main/market/offerbook/OfferBookChartViewModelTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.market.offerbook; import bisq.common.GlobalSettings; diff --git a/src/test/java/bisq/desktop/main/market/spread/SpreadViewModelTest.java b/src/test/java/bisq/desktop/main/market/spread/SpreadViewModelTest.java index d00c151cc1..7bb9df7bee 100644 --- a/src/test/java/bisq/desktop/main/market/spread/SpreadViewModelTest.java +++ b/src/test/java/bisq/desktop/main/market/spread/SpreadViewModelTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.market.spread; diff --git a/src/test/java/bisq/desktop/main/market/trades/TradesChartsViewModelTest.java b/src/test/java/bisq/desktop/main/market/trades/TradesChartsViewModelTest.java index 7e5214338a..f61dadd6a2 100644 --- a/src/test/java/bisq/desktop/main/market/trades/TradesChartsViewModelTest.java +++ b/src/test/java/bisq/desktop/main/market/trades/TradesChartsViewModelTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.market.trades; import bisq.common.crypto.KeyRing; diff --git a/src/test/java/bisq/desktop/main/offer/createoffer/CreateOfferViewModelTest.java b/src/test/java/bisq/desktop/main/offer/createoffer/CreateOfferViewModelTest.java index 4852fe345b..945d3d8fc0 100644 --- a/src/test/java/bisq/desktop/main/offer/createoffer/CreateOfferViewModelTest.java +++ b/src/test/java/bisq/desktop/main/offer/createoffer/CreateOfferViewModelTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.offer.createoffer; import bisq.common.GlobalSettings; diff --git a/src/test/java/bisq/desktop/main/offer/offerbook/OfferBookListItemMaker.java b/src/test/java/bisq/desktop/main/offer/offerbook/OfferBookListItemMaker.java index 501d80cfb3..b4f1e55b6a 100644 --- a/src/test/java/bisq/desktop/main/offer/offerbook/OfferBookListItemMaker.java +++ b/src/test/java/bisq/desktop/main/offer/offerbook/OfferBookListItemMaker.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.offer.offerbook; import com.natpryce.makeiteasy.Instantiator; diff --git a/src/test/java/bisq/desktop/main/offer/offerbook/OfferBookViewModelTest.java b/src/test/java/bisq/desktop/main/offer/offerbook/OfferBookViewModelTest.java index 86dd53252c..ed79a8c10c 100644 --- a/src/test/java/bisq/desktop/main/offer/offerbook/OfferBookViewModelTest.java +++ b/src/test/java/bisq/desktop/main/offer/offerbook/OfferBookViewModelTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.main.offer.offerbook; import com.natpryce.makeiteasy.Maker; diff --git a/src/test/java/bisq/desktop/util/CurrencyListItemMakers.java b/src/test/java/bisq/desktop/util/CurrencyListItemMakers.java index 6bca0c18b4..92baa04e65 100644 --- a/src/test/java/bisq/desktop/util/CurrencyListItemMakers.java +++ b/src/test/java/bisq/desktop/util/CurrencyListItemMakers.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.util; import com.natpryce.makeiteasy.Instantiator; diff --git a/src/test/java/bisq/desktop/util/CurrencyListTest.java b/src/test/java/bisq/desktop/util/CurrencyListTest.java index b9d2d2b3b5..01754cd2aa 100644 --- a/src/test/java/bisq/desktop/util/CurrencyListTest.java +++ b/src/test/java/bisq/desktop/util/CurrencyListTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.util; import com.google.common.collect.Lists; diff --git a/src/test/java/bisq/desktop/util/GUIUtilTest.java b/src/test/java/bisq/desktop/util/GUIUtilTest.java index 22dc1ce8b7..14d73a0658 100644 --- a/src/test/java/bisq/desktop/util/GUIUtilTest.java +++ b/src/test/java/bisq/desktop/util/GUIUtilTest.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package bisq.desktop.util; import bisq.common.GlobalSettings; diff --git a/src/test/java/org/bitcoinj/core/CoinMaker.java b/src/test/java/org/bitcoinj/core/CoinMaker.java index b4c179e7c8..5a77dc0025 100644 --- a/src/test/java/org/bitcoinj/core/CoinMaker.java +++ b/src/test/java/org/bitcoinj/core/CoinMaker.java @@ -1,3 +1,20 @@ +/* + * This file is part of Bisq. + * + * Bisq is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Bisq is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public + * License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Bisq. If not, see . + */ + package org.bitcoinj.core; import com.natpryce.makeiteasy.Instantiator;