Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/texteditor/propertylabel/IContext.java')
-rw-r--r--extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/texteditor/propertylabel/IContext.java90
1 files changed, 0 insertions, 90 deletions
diff --git a/extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/texteditor/propertylabel/IContext.java b/extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/texteditor/propertylabel/IContext.java
deleted file mode 100644
index d60aece9c52..00000000000
--- a/extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/texteditor/propertylabel/IContext.java
+++ /dev/null
@@ -1,90 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2008 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:
- * Remi Schnekenburger (CEA LIST) Remi.Schnekenburger@cea.fr - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.parsers.texteditor.propertylabel;
-
-/**
- *
- */
-public abstract interface IContext {
-
- /**
- *
- */
- public static final int DEFAULT = 0;
-
- /**
- *
- */
- public static final int VISIBILITY = 1;
-
- /**
- *
- */
- public static final int IS_DERIVED = 2;
-
- /**
- *
- */
- public static final int NAME = 3;
-
- /**
- *
- */
- public static final int AFTER_COLON = 4;
-
- /**
- *
- */
- public static final int PROPERTY_TYPE = 5;
-
- /**
- *
- */
- public static final int MULTIPLICITY = 6;
-
- /**
- *
- */
- public static final int DEFAULT_VALUE = 7;
-
- /**
- *
- */
- public static final int PROPERTY_MODIFIERS = 8;
-
- /**
- *
- */
- public static final int PROPERTY_MODIFIER = 9;
-
- /**
- *
- */
- public static final int IN_MULTIPLICITY = 10;
-
- /**
- *
- */
- public static final int SUBSET_PROPERTY = 11;
-
- /**
- *
- */
- public static final int REDEFINE_PROPERTY = 12;
-
- /**
- *
- */
- public static final int AFTER_MULTIPLICITY = 13;
-}

Back to the top