Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: afa9738ad18f1c42f0cf9810b8f28bf5ad311390 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*****************************************************************************
 * Copyright (c) 2010, 2013, 2020 CEA LIST.
 *
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Patrick Tessier (CEA LIST) Patrick.Tessier@cea.fr - Initial API and implementation
 * Jeremie TATIBOUET (CEA LIST) jeremie.tatibouet@cea.fr
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.service.validation.api;

import java.util.Map;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.emf.common.notify.AdapterFactory;
import org.eclipse.emf.common.util.BasicDiagnostic;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EDataType;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.EValidator;
import org.eclipse.papyrus.infra.services.validation.IPapyrusDiagnostician;
import org.eclipse.papyrus.uml.service.validation.internal.OCLEValidatorAdapter;
import org.eclipse.uml2.uml.UMLPackage;

/**
 * UML diagnostician is in charge on validating UML models.
 */
public class UMLDiagnostician implements IPapyrusDiagnostician {

	/**
	 * Delegate diagnostician (not API)
	 */
	private org.eclipse.papyrus.uml.service.validation.internal.UMLDiagnostician delegate;

	/**
	 * When instantiated using this constructor, this diagnostician relies on the classic UML Validator provided by the UML implementation
	 */
	public UMLDiagnostician() {
		delegate = new org.eclipse.papyrus.uml.service.validation.internal.UMLDiagnostician(new OCLEValidatorAdapter((EValidator) EValidator.Registry.INSTANCE.get(UMLPackage.eINSTANCE)));
	}

	/**
	 *
	 * When instantiated using this constructor, the diagnostician relies on a user defined validator.
	 *
	 * @param validator
	 *            - the validator to be used
	 */
	public UMLDiagnostician(EValidator validator) {
		delegate = new org.eclipse.papyrus.uml.service.validation.internal.UMLDiagnostician(new OCLEValidatorAdapter(validator));
	}

	/**
	 * @see org.eclipse.papyrus.infra.services.validation.IPapyrusDiagnostician#initialize(org.eclipse.emf.common.notify.AdapterFactory, org.eclipse.core.runtime.IProgressMonitor)
	 */
	public void initialize(AdapterFactory adapterFactory, IProgressMonitor progressMonitor) {
		delegate.initialize(adapterFactory, progressMonitor);
	}

	/**
	 * @see org.eclipse.papyrus.infra.services.validation.IPapyrusDiagnostician#createDefaultContext()
	 */
	public Map<Object, Object> createDefaultContext() {
		return delegate.createDefaultContext();
	}

	/**
	 * @see org.eclipse.papyrus.infra.services.validation.IPapyrusDiagnostician#createDefaultDiagnostic(org.eclipse.emf.ecore.EObject)
	 */
	public BasicDiagnostic createDefaultDiagnostic(EObject eObject) {
		return delegate.createDefaultDiagnostic(eObject);
	}

	/**
	 * @see org.eclipse.emf.ecore.EValidator#validate(org.eclipse.emf.ecore.EObject, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
	 */
	public boolean validate(EObject eObject, DiagnosticChain diagnostics, Map<Object, Object> context) {
		return delegate.validate(eObject, diagnostics, context);
	}

	/**
	 * @see org.eclipse.emf.ecore.EValidator.SubstitutionLabelProvider#getObjectLabel(org.eclipse.emf.ecore.EObject)
	 */
	public String getObjectLabel(EObject eObject) {
		return delegate.getObjectLabel(eObject);
	}

	/**
	 * @see org.eclipse.emf.ecore.EValidator.SubstitutionLabelProvider#getFeatureLabel(org.eclipse.emf.ecore.EStructuralFeature)
	 */
	public String getFeatureLabel(EStructuralFeature eStructuralFeature) {
		return delegate.getFeatureLabel(eStructuralFeature);
	}

	/**
	 * @see org.eclipse.emf.ecore.EValidator.SubstitutionLabelProvider#getValueLabel(org.eclipse.emf.ecore.EDataType, java.lang.Object)
	 */
	public String getValueLabel(EDataType eDataType, Object value) {
		return delegate.getValueLabel(eDataType, value);
	}

	/**
	 * @see org.eclipse.emf.ecore.EValidator#validate(org.eclipse.emf.ecore.EClass, org.eclipse.emf.ecore.EObject, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
	 */
	public boolean validate(EClass eClass, EObject eObject, DiagnosticChain diagnostics, Map<Object, Object> context) {
		return delegate.validate(eClass, eObject, diagnostics, context);
	}

	/**
	 * @see org.eclipse.emf.ecore.EValidator#validate(org.eclipse.emf.ecore.EDataType, java.lang.Object, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
	 */
	public boolean validate(EDataType eDataType, Object value, DiagnosticChain diagnostics, Map<Object, Object> context) {
		return delegate.validate(eDataType, value, diagnostics, context);
	}

}

Back to the top