From 09e9521243e768fcb27c62c3cfb2278a98d6994a Mon Sep 17 00:00:00 2001 From: Dan Arad Date: Wed, 20 Jan 2021 17:43:08 +0200 Subject: [PATCH] 6636-custom-editor: support for CustomEditor API Signed-off-by: Dan Arad --- .../main/browser/custom-editors/custom-editor-contribution.ts | 2 +- .../src/main/browser/custom-editors/custom-editor-opener.tsx | 2 +- .../src/main/browser/custom-editors/custom-editor-service.ts | 2 +- .../main/browser/custom-editors/custom-editor-widget-factory.ts | 2 +- .../src/main/browser/custom-editors/custom-editor-widget.ts | 2 +- .../src/main/browser/custom-editors/custom-editors-main.ts | 2 +- packages/plugin-ext/src/main/browser/custom-editors/glob.ts | 2 +- packages/plugin-ext/src/main/browser/custom-editors/paths.ts | 2 +- .../browser/custom-editors/plugin-custom-editor-registry.ts | 2 +- .../src/main/browser/custom-editors/undo-redo-service.ts | 2 +- packages/plugin-ext/src/plugin/custom-editors.ts | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-contribution.ts b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-contribution.ts index 531ef56c47c23..6b4a94aa1d6f6 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-contribution.ts +++ b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-contribution.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/main/browser/custom-editors/custom-editor-opener.tsx b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-opener.tsx index 34efbb9c8abfc..e421552206f34 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-opener.tsx +++ b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-opener.tsx @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/main/browser/custom-editors/custom-editor-service.ts b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-service.ts index 228118776ccc4..6434a1644581f 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-service.ts +++ b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-service.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/main/browser/custom-editors/custom-editor-widget-factory.ts b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-widget-factory.ts index 5864dac9240e3..e23ee857fb303 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-widget-factory.ts +++ b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-widget-factory.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/main/browser/custom-editors/custom-editor-widget.ts b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-widget.ts index 3aef36eaa6ed2..54529a7bcadc5 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-widget.ts +++ b/packages/plugin-ext/src/main/browser/custom-editors/custom-editor-widget.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/main/browser/custom-editors/custom-editors-main.ts b/packages/plugin-ext/src/main/browser/custom-editors/custom-editors-main.ts index eb8f0617d3399..54b6041f5d0d6 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/custom-editors-main.ts +++ b/packages/plugin-ext/src/main/browser/custom-editors/custom-editors-main.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/main/browser/custom-editors/glob.ts b/packages/plugin-ext/src/main/browser/custom-editors/glob.ts index f492315e6a9b6..47349e8e016e8 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/glob.ts +++ b/packages/plugin-ext/src/main/browser/custom-editors/glob.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/main/browser/custom-editors/paths.ts b/packages/plugin-ext/src/main/browser/custom-editors/paths.ts index 68c538369b4b1..3799af4147edd 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/paths.ts +++ b/packages/plugin-ext/src/main/browser/custom-editors/paths.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/main/browser/custom-editors/plugin-custom-editor-registry.ts b/packages/plugin-ext/src/main/browser/custom-editors/plugin-custom-editor-registry.ts index 991bcbd35c263..b7f6ddfaeb8e1 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/plugin-custom-editor-registry.ts +++ b/packages/plugin-ext/src/main/browser/custom-editors/plugin-custom-editor-registry.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/main/browser/custom-editors/undo-redo-service.ts b/packages/plugin-ext/src/main/browser/custom-editors/undo-redo-service.ts index 99735c0d84898..143dc6892ebbf 100644 --- a/packages/plugin-ext/src/main/browser/custom-editors/undo-redo-service.ts +++ b/packages/plugin-ext/src/main/browser/custom-editors/undo-redo-service.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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/plugin-ext/src/plugin/custom-editors.ts b/packages/plugin-ext/src/plugin/custom-editors.ts index f5636168b3ab8..82e390ba92d35 100644 --- a/packages/plugin-ext/src/plugin/custom-editors.ts +++ b/packages/plugin-ext/src/plugin/custom-editors.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 SAP SE or an SAP affiliate company and others. + * Copyright (c) 2021 SAP SE or an SAP affiliate company 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