Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/emf/org.eclipse.papyrus.infra.emf.appearance/src/org/eclipse/papyrus/infra/emf/appearance/style/ILabelMaskProvider.java')
-rw-r--r--plugins/infra/emf/org.eclipse.papyrus.infra.emf.appearance/src/org/eclipse/papyrus/infra/emf/appearance/style/ILabelMaskProvider.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/plugins/infra/emf/org.eclipse.papyrus.infra.emf.appearance/src/org/eclipse/papyrus/infra/emf/appearance/style/ILabelMaskProvider.java b/plugins/infra/emf/org.eclipse.papyrus.infra.emf.appearance/src/org/eclipse/papyrus/infra/emf/appearance/style/ILabelMaskProvider.java
deleted file mode 100644
index a8fa4373ef8..00000000000
--- a/plugins/infra/emf/org.eclipse.papyrus.infra.emf.appearance/src/org/eclipse/papyrus/infra/emf/appearance/style/ILabelMaskProvider.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2012 CEA LIST.
- *
- * 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:
- * Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
- *****************************************************************************/
-package org.eclipse.papyrus.infra.emf.appearance.style;
-
-import java.util.Map;
-
-/**
- * An interface to retrieve the label masks associated to an element
- *
- * @author Camille Letavernier
- *
- */
-public interface ILabelMaskProvider {
-
- /**
- * Returns the list of masks for this provider
- *
- * @return
- */
- public Map<Integer, String> getMasks();
-
- /**
- * Returns the default mask value for this provider
- *
- * @return
- */
- public int getDefaultValue();
-}

Back to the top