Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/qompass-designer/org.eclipse.papyrus.qompass.designer.core/src/org/eclipse/papyrus/qompass/designer/core/transformations/PrefixConstants.java')
-rw-r--r--extraplugins/qompass-designer/org.eclipse.papyrus.qompass.designer.core/src/org/eclipse/papyrus/qompass/designer/core/transformations/PrefixConstants.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/extraplugins/qompass-designer/org.eclipse.papyrus.qompass.designer.core/src/org/eclipse/papyrus/qompass/designer/core/transformations/PrefixConstants.java b/extraplugins/qompass-designer/org.eclipse.papyrus.qompass.designer.core/src/org/eclipse/papyrus/qompass/designer/core/transformations/PrefixConstants.java
deleted file mode 100644
index 8cab7ddf4cf..00000000000
--- a/extraplugins/qompass-designer/org.eclipse.papyrus.qompass.designer.core/src/org/eclipse/papyrus/qompass/designer/core/transformations/PrefixConstants.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2013 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:
- * Ansgar Radermacher ansgar.radermacher@cea.fr
- *
- *****************************************************************************/
-
-package org.eclipse.papyrus.qompass.designer.core.transformations;
-
-/**
- * A set of constants used for the CIF. In particular prefixes for the operations
- * to access the implementation of a provided interface and connect a required interface
- *
- */
-public class PrefixConstants {
-
- public static String getP_Prefix = "get_"; //$NON-NLS-1$
-
- public static String getConnQ_Prefix = ""; //$NON-NLS-1$
-
- public static String connectQ_Prefix = "connect_"; //$NON-NLS-1$
-
- public static String attributePrefix = ""; //$NON-NLS-1$
-
- enum CIFvariant {
- UML, CCM
- };
-
- /**
- * Initialize a specific CIF variant
- *
- * TODO currently unused
- *
- * @param cif
- * Which CIF variant should used?
- */
- void init(CIFvariant cif) {
- if (cif == CIFvariant.UML) {
- getP_Prefix = "get_"; //$NON-NLS-1$
- getConnQ_Prefix = ""; //$NON-NLS-1$
- connectQ_Prefix = "connect_"; //$NON-NLS-1$
- attributePrefix = ""; //$NON-NLS-1$
- } else if (cif == CIFvariant.CCM) {
- getP_Prefix = "get_"; //$NON-NLS-1$
- getConnQ_Prefix = "getconnection_"; //$NON-NLS-1$
- connectQ_Prefix = "connect_"; //$NON-NLS-1$
- attributePrefix = "m_"; //$NON-NLS-1$
- }
- }
-};

Back to the top