Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/syntax/units/SignalDefinition.java')
-rw-r--r--plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/syntax/units/SignalDefinition.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/syntax/units/SignalDefinition.java b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/syntax/units/SignalDefinition.java
deleted file mode 100644
index 55463ee6fe3..00000000000
--- a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/syntax/units/SignalDefinition.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2011 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:
- * CEA LIST - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.uml.alf.syntax.units;
-
-public class SignalDefinition extends ClassifierDefinition {
-
- // Constraints
-
- /*
- * The specialization referents of a signal definition must all be signals.
- */
- public void checkSignalDefinitionSpecializationReferent() {
-
- }
-
- // Helper Operations
-
- /*
- * In addition to the annotations allowed for classifiers in general, a signal definition allows an annotation
- * for any stereotype whose metaclass is consistent with Signal.
- */
- @Override
- public boolean annotationAllowed(StereotypeAnnotation annotation) {
- return false ;
- }
-
- /*
- * Return true if the given member is either a SignalDefinition or an imported member whose referent is a
- * SignalDefinition or a Reception (where signal reception definitions are considered to be kinds of signal
- * definitions).
- */
- @Override
- public boolean isSameKindAs(Member member) {
- return false ;
- }
-
- /*
- * Returns true if the given unit definition matches this signal definition considered as a classifier
- * definition and the subunit is for a signal definition.
- */
- @Override
- public boolean matchForStub(UnitDefinition unit) {
- return false ;
- }
-
-}

Back to the top