Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/uml-compare-1.X/org.eclipse.papyrus.infra.emf.compare.ui/src/org/eclipse/papyrus/infra/emf/compare/ui/utils/ICustomizableEditor.java')
-rw-r--r--deprecated/uml-compare-1.X/org.eclipse.papyrus.infra.emf.compare.ui/src/org/eclipse/papyrus/infra/emf/compare/ui/utils/ICustomizableEditor.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/deprecated/uml-compare-1.X/org.eclipse.papyrus.infra.emf.compare.ui/src/org/eclipse/papyrus/infra/emf/compare/ui/utils/ICustomizableEditor.java b/deprecated/uml-compare-1.X/org.eclipse.papyrus.infra.emf.compare.ui/src/org/eclipse/papyrus/infra/emf/compare/ui/utils/ICustomizableEditor.java
deleted file mode 100644
index e2ed739abd7..00000000000
--- a/deprecated/uml-compare-1.X/org.eclipse.papyrus.infra.emf.compare.ui/src/org/eclipse/papyrus/infra/emf/compare/ui/utils/ICustomizableEditor.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package org.eclipse.papyrus.infra.emf.compare.ui.utils;
-
-import org.eclipse.papyrus.infra.emf.compare.ui.provider.EMFCompareLabelProvider;
-import org.eclipse.ui.IEditorPart;
-
-/**
- *
- * This interface provides useful methods to manage easily the customization of the viewers in an editor
- *
- */
-public interface ICustomizableEditor extends IEditorPart {
-
- /**
- *
- * @return
- * a LabelProvider
- */
- public EMFCompareLabelProvider getLabelProvider();
-
- /**
- * Refresh the viewers of the editor
- */
- public void refreshViewers();
-}

Back to the top