From c26b13b2f2b3a761ebc6cfb44e810603681e8759 Mon Sep 17 00:00:00 2001 From: Tobias Ortmayr Date: Sun, 17 Mar 2024 17:12:07 +0100 Subject: [PATCH] Fix copyright header violations --- examples/workflow-glsp/src/workflow-diagram-module.ts | 2 +- examples/workflow-glsp/src/workflow-views.tsx | 2 +- packages/client/src/base/action-dispatcher.ts | 3 ++- packages/client/src/base/action-handler-registry.ts | 2 +- packages/client/src/base/default.module.ts | 2 +- .../client/src/base/feedback/feedback-action-dispatcher.ts | 2 +- packages/client/src/base/feedback/feedback-command.ts | 2 +- packages/client/src/base/feedback/index.ts | 2 +- packages/client/src/base/feedback/update-model-command.ts | 2 +- packages/client/src/base/model/glsp-model-source.ts | 2 +- packages/client/src/base/ranked.ts | 2 +- packages/client/src/base/selection-service.spec.ts | 2 +- packages/client/src/base/selection-service.ts | 2 +- .../client/src/features/bounds/glsp-hidden-bounds-updater.ts | 2 +- packages/client/src/features/bounds/local-bounds.ts | 2 +- .../client/src/features/bounds/set-bounds-feedback-command.ts | 2 +- packages/client/src/features/change-bounds/position-snapper.ts | 2 +- .../src/features/element-template/add-template-element.ts | 2 +- .../client/src/features/helper-lines/helper-line-feedback.ts | 2 +- .../src/features/helper-lines/helper-line-manager-default.ts | 2 +- .../client/src/features/helper-lines/helper-line-manager.ts | 2 +- packages/client/src/features/hints/type-hint-provider.ts | 2 +- .../tools/change-bounds/change-bounds-tool-feedback.ts | 2 +- .../features/tools/marquee-selection/marquee-behavior.spec.ts | 2 +- packages/client/src/utils/contribution-provider.ts | 2 +- packages/client/src/utils/gmodel-util.ts | 2 +- packages/client/src/utils/html-utils.ts | 2 +- packages/glsp-sprotty/src/index.ts | 2 +- packages/glsp-sprotty/src/re-exports.ts | 2 +- packages/glsp-sprotty/src/types.ts | 2 +- packages/protocol/src/action-protocol/base-protocol.spec.ts | 2 +- packages/protocol/src/action-protocol/clipboard.ts | 2 +- packages/protocol/src/action-protocol/contexts.ts | 2 +- packages/protocol/src/action-protocol/edge-modification.ts | 2 +- packages/protocol/src/action-protocol/element-creation.ts | 2 +- packages/protocol/src/action-protocol/element-hover.ts | 2 +- packages/protocol/src/action-protocol/element-navigation.ts | 2 +- .../protocol/src/action-protocol/element-selection.spec.ts | 2 +- packages/protocol/src/action-protocol/element-selection.ts | 2 +- .../protocol/src/action-protocol/element-type-hints.spec.ts | 2 +- packages/protocol/src/action-protocol/element-type-hints.ts | 2 +- packages/protocol/src/action-protocol/model-data.ts | 2 +- packages/protocol/src/action-protocol/model-edit-mode.ts | 2 +- packages/protocol/src/action-protocol/model-saving.ts | 2 +- .../protocol/src/action-protocol/node-modification.spec.ts | 2 +- packages/protocol/src/action-protocol/node-modification.ts | 2 +- packages/protocol/src/action-protocol/tool-palette.ts | 2 +- packages/protocol/src/action-protocol/types.ts | 2 +- packages/protocol/src/action-protocol/undo-redo.ts | 2 +- packages/protocol/src/action-protocol/viewport.ts | 2 +- packages/protocol/src/index.ts | 2 +- packages/protocol/src/utils/index.ts | 2 +- 52 files changed, 53 insertions(+), 52 deletions(-) diff --git a/examples/workflow-glsp/src/workflow-diagram-module.ts b/examples/workflow-glsp/src/workflow-diagram-module.ts index 8e2d52e0..807d27ce 100644 --- a/examples/workflow-glsp/src/workflow-diagram-module.ts +++ b/examples/workflow-glsp/src/workflow-diagram-module.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/examples/workflow-glsp/src/workflow-views.tsx b/examples/workflow-glsp/src/workflow-views.tsx index ffdf4484..dfebe6e3 100644 --- a/examples/workflow-glsp/src/workflow-views.tsx +++ b/examples/workflow-glsp/src/workflow-views.tsx @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2022 EclipseSource and others. + * Copyright (c) 2019-2023 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/action-dispatcher.ts b/packages/client/src/base/action-dispatcher.ts index f3301f23..91b155b2 100644 --- a/packages/client/src/base/action-dispatcher.ts +++ b/packages/client/src/base/action-dispatcher.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at @@ -22,6 +22,7 @@ import { ModelInitializationConstraint } from './model/model-initialization-cons export class GLSPActionDispatcher extends ActionDispatcher { protected readonly timeouts: Map = new Map(); protected initializedConstraint = false; + // as @inject(ModelInitializationConstraint) protected initializationConstraint: ModelInitializationConstraint; diff --git a/packages/client/src/base/action-handler-registry.ts b/packages/client/src/base/action-handler-registry.ts index b063fb89..7a7a6c4d 100644 --- a/packages/client/src/base/action-handler-registry.ts +++ b/packages/client/src/base/action-handler-registry.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/default.module.ts b/packages/client/src/base/default.module.ts index 6317f5c0..cc0a7bb2 100644 --- a/packages/client/src/base/default.module.ts +++ b/packages/client/src/base/default.module.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/feedback/feedback-action-dispatcher.ts b/packages/client/src/base/feedback/feedback-action-dispatcher.ts index 1dcd22d9..a80d9c8e 100644 --- a/packages/client/src/base/feedback/feedback-action-dispatcher.ts +++ b/packages/client/src/base/feedback/feedback-action-dispatcher.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/feedback/feedback-command.ts b/packages/client/src/base/feedback/feedback-command.ts index 2d033982..ca4aa580 100644 --- a/packages/client/src/base/feedback/feedback-command.ts +++ b/packages/client/src/base/feedback/feedback-command.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/feedback/index.ts b/packages/client/src/base/feedback/index.ts index 0ba61ca6..4778b2b3 100644 --- a/packages/client/src/base/feedback/index.ts +++ b/packages/client/src/base/feedback/index.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/feedback/update-model-command.ts b/packages/client/src/base/feedback/update-model-command.ts index d7666786..873b3131 100644 --- a/packages/client/src/base/feedback/update-model-command.ts +++ b/packages/client/src/base/feedback/update-model-command.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/model/glsp-model-source.ts b/packages/client/src/base/model/glsp-model-source.ts index bdc2a790..20447ae3 100644 --- a/packages/client/src/base/model/glsp-model-source.ts +++ b/packages/client/src/base/model/glsp-model-source.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/ranked.ts b/packages/client/src/base/ranked.ts index 759236b8..799c189e 100644 --- a/packages/client/src/base/ranked.ts +++ b/packages/client/src/base/ranked.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/selection-service.spec.ts b/packages/client/src/base/selection-service.spec.ts index d33bb00d..f88d5ccd 100644 --- a/packages/client/src/base/selection-service.spec.ts +++ b/packages/client/src/base/selection-service.spec.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020-2023 EclipseSource and others. + * Copyright (c) 2020-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/base/selection-service.ts b/packages/client/src/base/selection-service.ts index c0906ef7..548a48c8 100644 --- a/packages/client/src/base/selection-service.ts +++ b/packages/client/src/base/selection-service.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/bounds/glsp-hidden-bounds-updater.ts b/packages/client/src/features/bounds/glsp-hidden-bounds-updater.ts index 963ae164..36453de3 100644 --- a/packages/client/src/features/bounds/glsp-hidden-bounds-updater.ts +++ b/packages/client/src/features/bounds/glsp-hidden-bounds-updater.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2022-2023 EclipseSource and others. + * Copyright (c) 2022-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/bounds/local-bounds.ts b/packages/client/src/features/bounds/local-bounds.ts index f02c9aee..7a079ff4 100644 --- a/packages/client/src/features/bounds/local-bounds.ts +++ b/packages/client/src/features/bounds/local-bounds.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/bounds/set-bounds-feedback-command.ts b/packages/client/src/features/bounds/set-bounds-feedback-command.ts index de642470..14df5075 100644 --- a/packages/client/src/features/bounds/set-bounds-feedback-command.ts +++ b/packages/client/src/features/bounds/set-bounds-feedback-command.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/change-bounds/position-snapper.ts b/packages/client/src/features/change-bounds/position-snapper.ts index 81c9f075..56f9c670 100644 --- a/packages/client/src/features/change-bounds/position-snapper.ts +++ b/packages/client/src/features/change-bounds/position-snapper.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/element-template/add-template-element.ts b/packages/client/src/features/element-template/add-template-element.ts index e8972698..ec82068a 100644 --- a/packages/client/src/features/element-template/add-template-element.ts +++ b/packages/client/src/features/element-template/add-template-element.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/helper-lines/helper-line-feedback.ts b/packages/client/src/features/helper-lines/helper-line-feedback.ts index 5240a507..1a9d7d9e 100644 --- a/packages/client/src/features/helper-lines/helper-line-feedback.ts +++ b/packages/client/src/features/helper-lines/helper-line-feedback.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/helper-lines/helper-line-manager-default.ts b/packages/client/src/features/helper-lines/helper-line-manager-default.ts index 873117b8..2f0cdfb7 100644 --- a/packages/client/src/features/helper-lines/helper-line-manager-default.ts +++ b/packages/client/src/features/helper-lines/helper-line-manager-default.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/helper-lines/helper-line-manager.ts b/packages/client/src/features/helper-lines/helper-line-manager.ts index f74266b2..971f6caa 100644 --- a/packages/client/src/features/helper-lines/helper-line-manager.ts +++ b/packages/client/src/features/helper-lines/helper-line-manager.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/hints/type-hint-provider.ts b/packages/client/src/features/hints/type-hint-provider.ts index 772ffc36..2e092db5 100644 --- a/packages/client/src/features/hints/type-hint-provider.ts +++ b/packages/client/src/features/hints/type-hint-provider.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/tools/change-bounds/change-bounds-tool-feedback.ts b/packages/client/src/features/tools/change-bounds/change-bounds-tool-feedback.ts index e33067b4..056ea2b4 100644 --- a/packages/client/src/features/tools/change-bounds/change-bounds-tool-feedback.ts +++ b/packages/client/src/features/tools/change-bounds/change-bounds-tool-feedback.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/features/tools/marquee-selection/marquee-behavior.spec.ts b/packages/client/src/features/tools/marquee-selection/marquee-behavior.spec.ts index 838dd748..74c0a7bc 100644 --- a/packages/client/src/features/tools/marquee-selection/marquee-behavior.spec.ts +++ b/packages/client/src/features/tools/marquee-selection/marquee-behavior.spec.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021 EclipseSource and others. + * Copyright (c) 2023 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/utils/contribution-provider.ts b/packages/client/src/utils/contribution-provider.ts index a489727a..204618b3 100644 --- a/packages/client/src/utils/contribution-provider.ts +++ b/packages/client/src/utils/contribution-provider.ts @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (C) 2017 TypeFox and others. + * Copyright (c) 2024 TypeFox and others. * Modifications: (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the diff --git a/packages/client/src/utils/gmodel-util.ts b/packages/client/src/utils/gmodel-util.ts index 8e7c25e8..a2b4c8cd 100644 --- a/packages/client/src/utils/gmodel-util.ts +++ b/packages/client/src/utils/gmodel-util.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/client/src/utils/html-utils.ts b/packages/client/src/utils/html-utils.ts index 801cc49d..ca1502b6 100644 --- a/packages/client/src/utils/html-utils.ts +++ b/packages/client/src/utils/html-utils.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2020 EclipseSource and others. + * Copyright (c) 2019-2023 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/glsp-sprotty/src/index.ts b/packages/glsp-sprotty/src/index.ts index 9d5b71ba..1fee1e69 100644 --- a/packages/glsp-sprotty/src/index.ts +++ b/packages/glsp-sprotty/src/index.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/glsp-sprotty/src/re-exports.ts b/packages/glsp-sprotty/src/re-exports.ts index 8180be07..ad2207e2 100644 --- a/packages/glsp-sprotty/src/re-exports.ts +++ b/packages/glsp-sprotty/src/re-exports.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/glsp-sprotty/src/types.ts b/packages/glsp-sprotty/src/types.ts index 2bb7cbec..20142d71 100644 --- a/packages/glsp-sprotty/src/types.ts +++ b/packages/glsp-sprotty/src/types.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2023 EclipseSource and others. + * Copyright (c) 2019-2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/base-protocol.spec.ts b/packages/protocol/src/action-protocol/base-protocol.spec.ts index 3cfe7139..27c1137a 100644 --- a/packages/protocol/src/action-protocol/base-protocol.spec.ts +++ b/packages/protocol/src/action-protocol/base-protocol.spec.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2022 STMicroelectronics and others. + * Copyright (c) 2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/clipboard.ts b/packages/protocol/src/action-protocol/clipboard.ts index 36ad9a9a..8e7f2923 100644 --- a/packages/protocol/src/action-protocol/clipboard.ts +++ b/packages/protocol/src/action-protocol/clipboard.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/contexts.ts b/packages/protocol/src/action-protocol/contexts.ts index bf737e73..0b68e55d 100644 --- a/packages/protocol/src/action-protocol/contexts.ts +++ b/packages/protocol/src/action-protocol/contexts.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/edge-modification.ts b/packages/protocol/src/action-protocol/edge-modification.ts index cd8f3bb0..d4b22b1d 100644 --- a/packages/protocol/src/action-protocol/edge-modification.ts +++ b/packages/protocol/src/action-protocol/edge-modification.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 EclipseSource and others. + * Copyright (c) 2021-2023 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/element-creation.ts b/packages/protocol/src/action-protocol/element-creation.ts index 56b683c1..80b892fc 100644 --- a/packages/protocol/src/action-protocol/element-creation.ts +++ b/packages/protocol/src/action-protocol/element-creation.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/element-hover.ts b/packages/protocol/src/action-protocol/element-hover.ts index 8cc86ac9..6aeda51c 100644 --- a/packages/protocol/src/action-protocol/element-hover.ts +++ b/packages/protocol/src/action-protocol/element-hover.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/element-navigation.ts b/packages/protocol/src/action-protocol/element-navigation.ts index 706448b1..92c5e0e4 100644 --- a/packages/protocol/src/action-protocol/element-navigation.ts +++ b/packages/protocol/src/action-protocol/element-navigation.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020-2022 EclipseSource and others. + * Copyright (c) 2020-2023 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/element-selection.spec.ts b/packages/protocol/src/action-protocol/element-selection.spec.ts index 36ff7a64..6517007b 100644 --- a/packages/protocol/src/action-protocol/element-selection.spec.ts +++ b/packages/protocol/src/action-protocol/element-selection.spec.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2022 STMicroelectronics and others. + * Copyright (c) 2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/element-selection.ts b/packages/protocol/src/action-protocol/element-selection.ts index 20262edd..e10fb89e 100644 --- a/packages/protocol/src/action-protocol/element-selection.ts +++ b/packages/protocol/src/action-protocol/element-selection.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/element-type-hints.spec.ts b/packages/protocol/src/action-protocol/element-type-hints.spec.ts index a5752b22..0d1445dc 100644 --- a/packages/protocol/src/action-protocol/element-type-hints.spec.ts +++ b/packages/protocol/src/action-protocol/element-type-hints.spec.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2022 STMicroelectronics and others. + * Copyright (c) 2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/element-type-hints.ts b/packages/protocol/src/action-protocol/element-type-hints.ts index 6af66ff3..478b38dc 100644 --- a/packages/protocol/src/action-protocol/element-type-hints.ts +++ b/packages/protocol/src/action-protocol/element-type-hints.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2019-2022 EclipseSource and others. + * Copyright (c) 2019-2023 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/model-data.ts b/packages/protocol/src/action-protocol/model-data.ts index 0b87c286..51873395 100644 --- a/packages/protocol/src/action-protocol/model-data.ts +++ b/packages/protocol/src/action-protocol/model-data.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/model-edit-mode.ts b/packages/protocol/src/action-protocol/model-edit-mode.ts index f21a1d0b..4c0fa082 100644 --- a/packages/protocol/src/action-protocol/model-edit-mode.ts +++ b/packages/protocol/src/action-protocol/model-edit-mode.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020-2022 EclipseSource and others. + * Copyright (c) 2020-2023 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/model-saving.ts b/packages/protocol/src/action-protocol/model-saving.ts index 8f877ab3..6d225fa5 100644 --- a/packages/protocol/src/action-protocol/model-saving.ts +++ b/packages/protocol/src/action-protocol/model-saving.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/node-modification.spec.ts b/packages/protocol/src/action-protocol/node-modification.spec.ts index c9f0eb1f..5692254e 100644 --- a/packages/protocol/src/action-protocol/node-modification.spec.ts +++ b/packages/protocol/src/action-protocol/node-modification.spec.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2022 STMicroelectronics and others. + * Copyright (c) 2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/node-modification.ts b/packages/protocol/src/action-protocol/node-modification.ts index a9cff365..d09d80c7 100644 --- a/packages/protocol/src/action-protocol/node-modification.ts +++ b/packages/protocol/src/action-protocol/node-modification.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 EclipseSource and others. + * Copyright (c) 2021-2023 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/tool-palette.ts b/packages/protocol/src/action-protocol/tool-palette.ts index 80f8a69c..41d29e9c 100644 --- a/packages/protocol/src/action-protocol/tool-palette.ts +++ b/packages/protocol/src/action-protocol/tool-palette.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/types.ts b/packages/protocol/src/action-protocol/types.ts index a2486a0c..a614bc36 100644 --- a/packages/protocol/src/action-protocol/types.ts +++ b/packages/protocol/src/action-protocol/types.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/undo-redo.ts b/packages/protocol/src/action-protocol/undo-redo.ts index a219fec1..b2176054 100644 --- a/packages/protocol/src/action-protocol/undo-redo.ts +++ b/packages/protocol/src/action-protocol/undo-redo.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/action-protocol/viewport.ts b/packages/protocol/src/action-protocol/viewport.ts index 8a677cc1..5c895d21 100644 --- a/packages/protocol/src/action-protocol/viewport.ts +++ b/packages/protocol/src/action-protocol/viewport.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2021-2022 STMicroelectronics and others. + * Copyright (c) 2021-2023 STMicroelectronics and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/index.ts b/packages/protocol/src/index.ts index f3c0e229..de57f7a2 100644 --- a/packages/protocol/src/index.ts +++ b/packages/protocol/src/index.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at diff --git a/packages/protocol/src/utils/index.ts b/packages/protocol/src/utils/index.ts index 9ba54bb5..4c8673e7 100644 --- a/packages/protocol/src/utils/index.ts +++ b/packages/protocol/src/utils/index.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2023 EclipseSource and others. + * Copyright (c) 2024 EclipseSource and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at