diff --git a/src/ca/mcgill/cs/jetuml/JetUML.java b/src/ca/mcgill/cs/jetuml/JetUML.java index ddfaaf227..c37f24ff2 100644 --- a/src/ca/mcgill/cs/jetuml/JetUML.java +++ b/src/ca/mcgill/cs/jetuml/JetUML.java @@ -45,7 +45,7 @@ public final class JetUML extends Application { @SuppressWarnings("exports") - public static final Version VERSION = Version.create(3, 1); + public static final Version VERSION = Version.create(3, 2); private static HostServices aHostServices; // Required to open a browser page. diff --git a/src/ca/mcgill/cs/jetuml/JetUML.properties b/src/ca/mcgill/cs/jetuml/JetUML.properties index 2d99851bc..29568a2c1 100644 --- a/src/ca/mcgill/cs/jetuml/JetUML.properties +++ b/src/ca/mcgill/cs/jetuml/JetUML.properties @@ -3,7 +3,7 @@ application.name=JetUML application.icon=jet.png application.file.name=JetUML Files application.file.all=All Files -application.copyright=Copyright © 2015-2020 McGill University +application.copyright=Copyright © 2015-2021 McGill University quotes.copyright=The quotes in the tooltip information are excerpts\n\ from the Unified Modeling Language Reference Manual,\n\ Second Edition. Copyright © 2005 by Pearson Education, Inc. diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/ClassDiagramBuilder.java b/src/ca/mcgill/cs/jetuml/diagram/builder/ClassDiagramBuilder.java index 84e489a55..abab18a99 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/ClassDiagramBuilder.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/ClassDiagramBuilder.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/DiagramBuilder.java b/src/ca/mcgill/cs/jetuml/diagram/builder/DiagramBuilder.java index 22036be82..17e9b0142 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/DiagramBuilder.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/DiagramBuilder.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/ObjectDiagramBuilder.java b/src/ca/mcgill/cs/jetuml/diagram/builder/ObjectDiagramBuilder.java index 802463c52..a80ac7027 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/ObjectDiagramBuilder.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/ObjectDiagramBuilder.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/SequenceDiagramBuilder.java b/src/ca/mcgill/cs/jetuml/diagram/builder/SequenceDiagramBuilder.java index e53ef45eb..9fa89d57a 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/SequenceDiagramBuilder.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/SequenceDiagramBuilder.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/StateDiagramBuilder.java b/src/ca/mcgill/cs/jetuml/diagram/builder/StateDiagramBuilder.java index 2cc5d7340..d7bc6a5dd 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/StateDiagramBuilder.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/StateDiagramBuilder.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/UseCaseDiagramBuilder.java b/src/ca/mcgill/cs/jetuml/diagram/builder/UseCaseDiagramBuilder.java index e9befed9e..ef9548efc 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/UseCaseDiagramBuilder.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/UseCaseDiagramBuilder.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ClassDiagramEdgeConstraints.java b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ClassDiagramEdgeConstraints.java index 7b5183288..f1eaaace5 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ClassDiagramEdgeConstraints.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ClassDiagramEdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/Constraint.java b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/Constraint.java index 2a2dd5b23..fee753c4f 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/Constraint.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/Constraint.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ConstraintSet.java b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ConstraintSet.java index 74331890b..2e9e873b1 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ConstraintSet.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ConstraintSet.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/EdgeConstraints.java b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/EdgeConstraints.java index 56dcc45a3..1d6542e24 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/EdgeConstraints.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/EdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ObjectDiagramEdgeConstraints.java b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ObjectDiagramEdgeConstraints.java index 2c62beae2..8902a1a56 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ObjectDiagramEdgeConstraints.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ObjectDiagramEdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/SequenceDiagramEdgeConstraints.java b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/SequenceDiagramEdgeConstraints.java index 893529558..88c6954fe 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/SequenceDiagramEdgeConstraints.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/SequenceDiagramEdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/StateDiagramEdgeConstraints.java b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/StateDiagramEdgeConstraints.java index 71cd5f1cc..128a08cc2 100644 --- a/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/StateDiagramEdgeConstraints.java +++ b/src/ca/mcgill/cs/jetuml/diagram/builder/constraints/StateDiagramEdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/src/ca/mcgill/cs/jetuml/geom/GeomUtils.java b/src/ca/mcgill/cs/jetuml/geom/GeomUtils.java index 282c17e9a..b58d08361 100644 --- a/src/ca/mcgill/cs/jetuml/geom/GeomUtils.java +++ b/src/ca/mcgill/cs/jetuml/geom/GeomUtils.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.geom; diff --git a/src/ca/mcgill/cs/jetuml/gui/DiagramCanvasController.java b/src/ca/mcgill/cs/jetuml/gui/DiagramCanvasController.java index 388f15f65..7a39379ac 100644 --- a/src/ca/mcgill/cs/jetuml/gui/DiagramCanvasController.java +++ b/src/ca/mcgill/cs/jetuml/gui/DiagramCanvasController.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.gui; import static ca.mcgill.cs.jetuml.diagram.DiagramType.viewerFor; diff --git a/src/ca/mcgill/cs/jetuml/gui/tips/UserGuideGenerator.java b/src/ca/mcgill/cs/jetuml/gui/tips/UserGuideGenerator.java index 6de4f6c37..44ccc0f34 100644 --- a/src/ca/mcgill/cs/jetuml/gui/tips/UserGuideGenerator.java +++ b/src/ca/mcgill/cs/jetuml/gui/tips/UserGuideGenerator.java @@ -1,3 +1,23 @@ +/******************************************************************************* + * JetUML - A desktop application for fast UML diagramming. + * + * Copyright (C) 2021 by McGill University. + * + * See: https://github.com/prmr/JetUML + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see http://www.gnu.org/licenses. + *******************************************************************************/ package ca.mcgill.cs.jetuml.gui.tips; import static ca.mcgill.cs.jetuml.application.ApplicationResources.RESOURCES; diff --git a/src/ca/mcgill/cs/jetuml/viewers/edges/AbstractEdgeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/edges/AbstractEdgeViewer.java index dfab0c1d1..ea5eb0465 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/edges/AbstractEdgeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/edges/AbstractEdgeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.edges; import ca.mcgill.cs.jetuml.diagram.Edge; diff --git a/src/ca/mcgill/cs/jetuml/viewers/edges/CallEdgeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/edges/CallEdgeViewer.java index 2cba3fe03..ca22c6e8a 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/edges/CallEdgeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/edges/CallEdgeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.edges; import java.util.ArrayList; diff --git a/src/ca/mcgill/cs/jetuml/viewers/edges/LabeledStraightEdgeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/edges/LabeledStraightEdgeViewer.java index 22bdc0bb0..9e5dc003f 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/edges/LabeledStraightEdgeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/edges/LabeledStraightEdgeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.edges; import java.util.function.Function; diff --git a/src/ca/mcgill/cs/jetuml/viewers/edges/SegmentedEdgeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/edges/SegmentedEdgeViewer.java index 733ad5b14..17558fbeb 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/edges/SegmentedEdgeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/edges/SegmentedEdgeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.edges; import java.util.function.Function; diff --git a/src/ca/mcgill/cs/jetuml/viewers/edges/StateTransitionEdgeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/edges/StateTransitionEdgeViewer.java index ab348adda..5e3d9e6f1 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/edges/StateTransitionEdgeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/edges/StateTransitionEdgeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.edges; import static ca.mcgill.cs.jetuml.views.StringViewer.FONT; diff --git a/src/ca/mcgill/cs/jetuml/viewers/edges/UseCaseDependencyEdgeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/edges/UseCaseDependencyEdgeViewer.java index 3e54378b0..df2b017be 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/edges/UseCaseDependencyEdgeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/edges/UseCaseDependencyEdgeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.edges; import ca.mcgill.cs.jetuml.diagram.Edge; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/AbstractPackageNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/AbstractPackageNodeViewer.java index 419df584e..5a53658d6 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/AbstractPackageNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/AbstractPackageNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import static ca.mcgill.cs.jetuml.geom.GeomUtils.max; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/ActorNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/ActorNodeViewer.java index 30c7aba10..904498ccd 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/ActorNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/ActorNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import ca.mcgill.cs.jetuml.diagram.Node; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/FieldNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/FieldNodeViewer.java index 1d6b6f082..197a350f1 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/FieldNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/FieldNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import ca.mcgill.cs.jetuml.diagram.Node; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/ImplicitParameterNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/ImplicitParameterNodeViewer.java index 1ec16b723..1cc409bb2 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/ImplicitParameterNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/ImplicitParameterNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import static ca.mcgill.cs.jetuml.geom.GeomUtils.max; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/NoteNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/NoteNodeViewer.java index 0468d72f9..2cd00c3ba 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/NoteNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/NoteNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import ca.mcgill.cs.jetuml.diagram.Node; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/ObjectNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/ObjectNodeViewer.java index 563729892..0a24755f7 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/ObjectNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/ObjectNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import ca.mcgill.cs.jetuml.diagram.Node; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/PackageDescriptionNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/PackageDescriptionNodeViewer.java index 90c13e4bb..86fe8e987 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/PackageDescriptionNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/PackageDescriptionNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import static ca.mcgill.cs.jetuml.geom.GeomUtils.max; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/StateNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/StateNodeViewer.java index 94209a15a..ad2766638 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/StateNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/StateNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import ca.mcgill.cs.jetuml.diagram.Node; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/TypeNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/TypeNodeViewer.java index 7de790064..7017e5dd3 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/TypeNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/TypeNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import static ca.mcgill.cs.jetuml.geom.GeomUtils.max; diff --git a/src/ca/mcgill/cs/jetuml/viewers/nodes/UseCaseNodeViewer.java b/src/ca/mcgill/cs/jetuml/viewers/nodes/UseCaseNodeViewer.java index eeb630865..877e2d430 100644 --- a/src/ca/mcgill/cs/jetuml/viewers/nodes/UseCaseNodeViewer.java +++ b/src/ca/mcgill/cs/jetuml/viewers/nodes/UseCaseNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import ca.mcgill.cs.jetuml.diagram.Node; diff --git a/src/ca/mcgill/cs/jetuml/views/FontMetrics.java b/src/ca/mcgill/cs/jetuml/views/FontMetrics.java index 6143631f2..c9750542e 100644 --- a/src/ca/mcgill/cs/jetuml/views/FontMetrics.java +++ b/src/ca/mcgill/cs/jetuml/views/FontMetrics.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * diff --git a/src/ca/mcgill/cs/jetuml/views/StringViewer.java b/src/ca/mcgill/cs/jetuml/views/StringViewer.java index 09a10a1f9..6ae646c88 100644 --- a/src/ca/mcgill/cs/jetuml/views/StringViewer.java +++ b/src/ca/mcgill/cs/jetuml/views/StringViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.views; import java.util.Collections; diff --git a/test/ca/mcgill/cs/jetuml/diagram/TestUsageScenariosObjectDiagram.java b/test/ca/mcgill/cs/jetuml/diagram/TestUsageScenariosObjectDiagram.java index 1f4118c9a..61ace81ba 100644 --- a/test/ca/mcgill/cs/jetuml/diagram/TestUsageScenariosObjectDiagram.java +++ b/test/ca/mcgill/cs/jetuml/diagram/TestUsageScenariosObjectDiagram.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * diff --git a/test/ca/mcgill/cs/jetuml/diagram/builder/TestSequenceDiagramBuilder.java b/test/ca/mcgill/cs/jetuml/diagram/builder/TestSequenceDiagramBuilder.java index 3180a7be2..dfda1c54e 100644 --- a/test/ca/mcgill/cs/jetuml/diagram/builder/TestSequenceDiagramBuilder.java +++ b/test/ca/mcgill/cs/jetuml/diagram/builder/TestSequenceDiagramBuilder.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder; diff --git a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestClassDiagramEdgeConstraints.java b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestClassDiagramEdgeConstraints.java index f343d2339..631639dcc 100644 --- a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestClassDiagramEdgeConstraints.java +++ b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestClassDiagramEdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestConstraintSet.java b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestConstraintSet.java index 21a33c894..f621313cd 100644 --- a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestConstraintSet.java +++ b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestConstraintSet.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestEdgeConstraints.java b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestEdgeConstraints.java index f0ac22758..fba661046 100644 --- a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestEdgeConstraints.java +++ b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestEdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestObjectDiagramEdgeConstraints.java b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestObjectDiagramEdgeConstraints.java index d22448c28..f42124e47 100644 --- a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestObjectDiagramEdgeConstraints.java +++ b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestObjectDiagramEdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestSequenceDiagramEdgeConstraints.java b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestSequenceDiagramEdgeConstraints.java index 9ec4a18bf..9c019083a 100644 --- a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestSequenceDiagramEdgeConstraints.java +++ b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestSequenceDiagramEdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestStateDiagramEdgeConstraints.java b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestStateDiagramEdgeConstraints.java index d5e538b7b..9e8826607 100644 --- a/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestStateDiagramEdgeConstraints.java +++ b/test/ca/mcgill/cs/jetuml/diagram/builder/constraints/TestStateDiagramEdgeConstraints.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.diagram.builder.constraints; diff --git a/test/ca/mcgill/cs/jetuml/geom/TestGeomUtils.java b/test/ca/mcgill/cs/jetuml/geom/TestGeomUtils.java index 46eb3a34b..3c42fde03 100644 --- a/test/ca/mcgill/cs/jetuml/geom/TestGeomUtils.java +++ b/test/ca/mcgill/cs/jetuml/geom/TestGeomUtils.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.geom; diff --git a/test/ca/mcgill/cs/jetuml/persistence/TestPersistenceService.java b/test/ca/mcgill/cs/jetuml/persistence/TestPersistenceService.java index 425eafc17..60a2fb128 100644 --- a/test/ca/mcgill/cs/jetuml/persistence/TestPersistenceService.java +++ b/test/ca/mcgill/cs/jetuml/persistence/TestPersistenceService.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.persistence; import static ca.mcgill.cs.jetuml.persistence.PersistenceTestUtils.build; diff --git a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestActorNodeViewer.java b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestActorNodeViewer.java index e2ea962f7..b194ffb51 100644 --- a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestActorNodeViewer.java +++ b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestActorNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import static org.junit.jupiter.api.Assertions.*; diff --git a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestFieldNodeViewer.java b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestFieldNodeViewer.java index dac925e22..60c75c473 100644 --- a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestFieldNodeViewer.java +++ b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestFieldNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import static ca.mcgill.cs.jetuml.testutils.GeometryUtils.osDependent; diff --git a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestObjectNodeViewer.java b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestObjectNodeViewer.java index 30b558c93..c56c76a04 100644 --- a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestObjectNodeViewer.java +++ b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestObjectNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import static ca.mcgill.cs.jetuml.testutils.GeometryUtils.osDependent; diff --git a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestPackageNodeViewer.java b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestPackageNodeViewer.java index e7f10e801..9fbeb6fda 100644 --- a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestPackageNodeViewer.java +++ b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestPackageNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import static ca.mcgill.cs.jetuml.testutils.GeometryUtils.osDependent; diff --git a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestTypeNodeViewer.java b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestTypeNodeViewer.java index 5102e82b8..4c0e8162b 100644 --- a/test/ca/mcgill/cs/jetuml/viewers/nodes/TestTypeNodeViewer.java +++ b/test/ca/mcgill/cs/jetuml/viewers/nodes/TestTypeNodeViewer.java @@ -1,7 +1,7 @@ /******************************************************************************* * JetUML - A desktop application for fast UML diagramming. * - * Copyright (C) 2020 by McGill University. + * Copyright (C) 2020, 2021 by McGill University. * * See: https://github.com/prmr/JetUML * @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses. - *******************************************************************************/ + *******************************************************************************/ package ca.mcgill.cs.jetuml.viewers.nodes; import static ca.mcgill.cs.jetuml.testutils.GeometryUtils.osDependent; diff --git a/test/ca/mcgill/cs/jetuml/views/TestFontMetrics.java b/test/ca/mcgill/cs/jetuml/views/TestFontMetrics.java index ba2c461c6..5caa263df 100644 --- a/test/ca/mcgill/cs/jetuml/views/TestFontMetrics.java +++ b/test/ca/mcgill/cs/jetuml/views/TestFontMetrics.java @@ -1,3 +1,23 @@ +/******************************************************************************* + * JetUML - A desktop application for fast UML diagramming. + * + * Copyright (C) 2021 by McGill University. + * + * See: https://github.com/prmr/JetUML + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see http://www.gnu.org/licenses. + *******************************************************************************/ package ca.mcgill.cs.jetuml.views; import static ca.mcgill.cs.jetuml.testutils.GeometryUtils.osDependent; diff --git a/test/ca/mcgill/cs/jetuml/views/TestStringViewer.java b/test/ca/mcgill/cs/jetuml/views/TestStringViewer.java index 8a12e7f98..9917f89e7 100644 --- a/test/ca/mcgill/cs/jetuml/views/TestStringViewer.java +++ b/test/ca/mcgill/cs/jetuml/views/TestStringViewer.java @@ -1,3 +1,23 @@ +/******************************************************************************* + * JetUML - A desktop application for fast UML diagramming. + * + * Copyright (C) 2021 by McGill University. + * + * See: https://github.com/prmr/JetUML + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see http://www.gnu.org/licenses. + *******************************************************************************/ package ca.mcgill.cs.jetuml.views; import static ca.mcgill.cs.jetuml.testutils.GeometryUtils.osDependent;