From dc23d870cefb27d471ecae6f02854f9e58b53ede Mon Sep 17 00:00:00 2001 From: Eike Stepper Date: Thu, 20 Aug 2015 08:08:13 +0200 Subject: [458349] Consolidate UI - Remove deprecated CDOCheckoutEditorOpener Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=458349--- plugins/org.eclipse.emf.cdo.explorer.ui/.project | 5 - .../.settings/.api_filters | 8 -- .../build.properties | 1 - plugins/org.eclipse.emf.cdo.explorer.ui/plugin.xml | 2 - .../schema/editorOpeners.exsd | 140 --------------------- .../ui/checkouts/CDOCheckoutEditorOpener.java | 27 ---- .../checkouts/CDOCheckoutEditorOpenerRegistry.java | 21 ---- 7 files changed, 204 deletions(-) delete mode 100644 plugins/org.eclipse.emf.cdo.explorer.ui/schema/editorOpeners.exsd delete mode 100644 plugins/org.eclipse.emf.cdo.explorer.ui/src/org/eclipse/emf/cdo/explorer/ui/checkouts/CDOCheckoutEditorOpener.java delete mode 100644 plugins/org.eclipse.emf.cdo.explorer.ui/src/org/eclipse/emf/cdo/explorer/ui/checkouts/CDOCheckoutEditorOpenerRegistry.java (limited to 'plugins/org.eclipse.emf.cdo.explorer.ui') diff --git a/plugins/org.eclipse.emf.cdo.explorer.ui/.project b/plugins/org.eclipse.emf.cdo.explorer.ui/.project index d41256489f..2066f9bf48 100644 --- a/plugins/org.eclipse.emf.cdo.explorer.ui/.project +++ b/plugins/org.eclipse.emf.cdo.explorer.ui/.project @@ -15,11 +15,6 @@ - - org.eclipse.pde.SchemaBuilder - - - org.eclipse.pde.api.tools.apiAnalysisBuilder diff --git a/plugins/org.eclipse.emf.cdo.explorer.ui/.settings/.api_filters b/plugins/org.eclipse.emf.cdo.explorer.ui/.settings/.api_filters index 3ac1b82df2..06b8f0cf25 100644 --- a/plugins/org.eclipse.emf.cdo.explorer.ui/.settings/.api_filters +++ b/plugins/org.eclipse.emf.cdo.explorer.ui/.settings/.api_filters @@ -8,14 +8,6 @@ - - - - - - - - diff --git a/plugins/org.eclipse.emf.cdo.explorer.ui/build.properties b/plugins/org.eclipse.emf.cdo.explorer.ui/build.properties index c4db2b9e13..cf0ebf722e 100644 --- a/plugins/org.eclipse.emf.cdo.explorer.ui/build.properties +++ b/plugins/org.eclipse.emf.cdo.explorer.ui/build.properties @@ -18,7 +18,6 @@ bin.includes = META-INF/,\ .options,\ about.html,\ icons/,\ - schema/,\ splash.bmp src.includes = about.html,\ CDOExplorer.launch diff --git a/plugins/org.eclipse.emf.cdo.explorer.ui/plugin.xml b/plugins/org.eclipse.emf.cdo.explorer.ui/plugin.xml index 5505c44d58..0da64b06c9 100644 --- a/plugins/org.eclipse.emf.cdo.explorer.ui/plugin.xml +++ b/plugins/org.eclipse.emf.cdo.explorer.ui/plugin.xml @@ -13,8 +13,6 @@ - - diff --git a/plugins/org.eclipse.emf.cdo.explorer.ui/schema/editorOpeners.exsd b/plugins/org.eclipse.emf.cdo.explorer.ui/schema/editorOpeners.exsd deleted file mode 100644 index 5167ab1aa4..0000000000 --- a/plugins/org.eclipse.emf.cdo.explorer.ui/schema/editorOpeners.exsd +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - [Enter description of this extension point.] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [Enter the first release in which this extension point appears.] - - - - - - - - - [Enter extension point usage example here.] - - - - - - - - - [Enter API information here.] - - - - - - - - - [Enter information about supplied implementation of this extension point.] - - - - - diff --git a/plugins/org.eclipse.emf.cdo.explorer.ui/src/org/eclipse/emf/cdo/explorer/ui/checkouts/CDOCheckoutEditorOpener.java b/plugins/org.eclipse.emf.cdo.explorer.ui/src/org/eclipse/emf/cdo/explorer/ui/checkouts/CDOCheckoutEditorOpener.java deleted file mode 100644 index 447cfc2bdf..0000000000 --- a/plugins/org.eclipse.emf.cdo.explorer.ui/src/org/eclipse/emf/cdo/explorer/ui/checkouts/CDOCheckoutEditorOpener.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) 2015 Eike Stepper (Berlin, Germany) and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Eike Stepper - initial API and implementation - */ -package org.eclipse.emf.cdo.explorer.ui.checkouts; - -import org.eclipse.emf.cdo.ui.CDOEditorOpener; - -/** - * @author Eike Stepper - */ -@Deprecated -public interface CDOCheckoutEditorOpener extends CDOEditorOpener -{ - /** - * @author Eike Stepper - */ - public static abstract class Default extends CDOEditorOpener.Default implements CDOCheckoutEditorOpener - { - } -} diff --git a/plugins/org.eclipse.emf.cdo.explorer.ui/src/org/eclipse/emf/cdo/explorer/ui/checkouts/CDOCheckoutEditorOpenerRegistry.java b/plugins/org.eclipse.emf.cdo.explorer.ui/src/org/eclipse/emf/cdo/explorer/ui/checkouts/CDOCheckoutEditorOpenerRegistry.java deleted file mode 100644 index cfb3ba9ce8..0000000000 --- a/plugins/org.eclipse.emf.cdo.explorer.ui/src/org/eclipse/emf/cdo/explorer/ui/checkouts/CDOCheckoutEditorOpenerRegistry.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) 2015 Eike Stepper (Berlin, Germany) and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Eike Stepper - initial API and implementation - */ -package org.eclipse.emf.cdo.explorer.ui.checkouts; - -import org.eclipse.emf.cdo.ui.CDOEditorOpener; - -/** - * @author Eike Stepper - */ -@Deprecated -public class CDOCheckoutEditorOpenerRegistry extends CDOEditorOpener.Registry -{ -} -- cgit v1.2.3