Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/tools/org.eclipse.papyrus.uml.tools/src/org/eclipse/papyrus/uml/tools/constraints/providers/DelegatingConstraintDescriptorWithOverride.java')
-rw-r--r--plugins/uml/tools/org.eclipse.papyrus.uml.tools/src/org/eclipse/papyrus/uml/tools/constraints/providers/DelegatingConstraintDescriptorWithOverride.java123
1 files changed, 0 insertions, 123 deletions
diff --git a/plugins/uml/tools/org.eclipse.papyrus.uml.tools/src/org/eclipse/papyrus/uml/tools/constraints/providers/DelegatingConstraintDescriptorWithOverride.java b/plugins/uml/tools/org.eclipse.papyrus.uml.tools/src/org/eclipse/papyrus/uml/tools/constraints/providers/DelegatingConstraintDescriptorWithOverride.java
deleted file mode 100644
index 25841889584..00000000000
--- a/plugins/uml/tools/org.eclipse.papyrus.uml.tools/src/org/eclipse/papyrus/uml/tools/constraints/providers/DelegatingConstraintDescriptorWithOverride.java
+++ /dev/null
@@ -1,123 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2015 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:
- * Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.uml.tools.constraints.providers;
-
-import org.eclipse.emf.common.notify.Notification;
-import org.eclipse.emf.ecore.EClass;
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.EPackage;
-import org.eclipse.emf.ecore.EValidator;
-import org.eclipse.emf.validation.model.ConstraintSeverity;
-import org.eclipse.emf.validation.model.EvaluationMode;
-import org.eclipse.emf.validation.preferences.EMFModelValidationPreferences;
-import org.eclipse.emf.validation.service.AbstractConstraintDescriptor;
-import org.eclipse.uml2.uml.UMLPlugin;
-
-/**
- * This class is copied from {@link org.eclipse.uml2.uml.validation.DelegatingConstraintDescriptor}.
- */
-class DelegatingConstraintDescriptorWithOverride
- extends AbstractConstraintDescriptor {
-
- private final String namespace;
-
- private final EClass target;
-
- private final String id;
-
- private final String name;
-
- /**
- * Initializes me with the {@code EClass} that I constrain.
- *
- * @param a
- * namespace in which to define the constraints (e.g.,
- * {@code "org.eclipse.uml2.uml"})
- * @param target
- * my target model class
- * @param name
- * my name, from the model
- */
- DelegatingConstraintDescriptorWithOverride(String namespace, EClass target, String name) {
- this.namespace = namespace;
- this.target = target;
- this.name = UMLPlugin.INSTANCE.getString(
- "_UI_Validation_constraintName", //$NON-NLS-1$
- new Object[]{target.getName(), name});
-
- StringBuilder buf = new StringBuilder();
- buf.append(namespace);
- buf.append('.').append(target.getEPackage().getName()).append('.')
- .append(target.getName());
- buf.append('.').append(name);
- this.id = buf.toString();
-
- // this public method call is safe because it's final in my superclass
- setEnabled(!EMFModelValidationPreferences.isConstraintDisabled(this.id));
- }
-
- public String getName() {
- return name;
- }
-
- public String getId() {
- return id;
- }
-
- public String getPluginId() {
- return namespace;
- }
-
- public String getDescription() {
- return UMLPlugin.INSTANCE.getString("_UI_Validation_constraintDesc", //$NON-NLS-1$
- new Object[]{getName()});
- }
-
- public ConstraintSeverity getSeverity() {
- // in the UML metamodel, constraints generally are warnings
- return ConstraintSeverity.WARNING;
- }
-
- public int getStatusCode() {
- return 0; // constraints determine their own codes
- }
-
- public EvaluationMode<?> getEvaluationMode() {
- // it is not appropriate to try to invoke EValidator constraints in
- // Batch mode
- return EvaluationMode.BATCH;
- }
-
- public boolean targetsTypeOf(EObject eObject) {
- return target.isInstance(eObject);
- }
-
- public boolean targetsEvent(Notification notification) {
- // live mode is not supported
- return false;
- }
-
- public String getMessagePattern() {
- return UMLPlugin.INSTANCE.getString("_UI_Validation_violation", //$NON-NLS-1$
- new Object[]{getName()});
- }
-
- public String getBody() {
- // delegated constraints have nobody (har, har)
- return null;
- }
-
- EClass getTarget() {
- return target;
- }
-}

Back to the top