Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8696a73b9251121f6731ca4986820fb281013740 (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
/*****************************************************************************
 * Copyright (c) 2016 CEA LIST and others.
 * 
 * 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.infra.editor.welcome.internationalization.modelelements;

import org.eclipse.core.databinding.observable.IObservable;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.papyrus.infra.properties.ui.modelelement.EMFModelElement;

/**
 * The internationalization welcome model element.
 */
public class InternationalizationWelcomeModelElement extends EMFModelElement {

	/**
	 * The private storage identifier.
	 */
	private final String PRIVATE_STORAGE = "privateStorage"; //$NON-NLS-1$

	/**
	 * The useInternationalization identifier.
	 */
	private final String USE_INTERNATIONALIZATION = "useInternationalization"; //$NON-NLS-1$

	/**
	 * The language identifier.
	 */
	private final String LANGUAGE = "language"; //$NON-NLS-1$

	/**
	 * Constructor.
	 *
	 * @param source
	 *            The source eObject.
	 * @param domain
	 *            The current editing domain.
	 */
	public InternationalizationWelcomeModelElement(final EObject source, final EditingDomain domain) {
		super(source, domain);
	}

	/**
	 * {@inheritDoc}
	 * 
	 * @see org.eclipse.papyrus.infra.properties.ui.modelelement.EMFModelElement#doGetObservable(java.lang.String)
	 */
	@Override
	protected IObservable doGetObservable(final String propertyPath) {
		IObservable result = null;

		switch (propertyPath) {
		case PRIVATE_STORAGE:
			result = new PrivateInternationalizationPreferenceObservableValue(domain);
			break;
		case USE_INTERNATIONALIZATION:
			result = new UseInternationalizationObservableValue(domain);
			break;
		case LANGUAGE:
			result = new LanguageObservableValue(domain);
			break;
		default:
			break;
		}

		return null != result ? result : super.doGetObservable(propertyPath);
	}

	/**
	 * {@inheritDoc}
	 * 
	 * @see org.eclipse.papyrus.infra.properties.ui.modelelement.EMFModelElement#isFeatureEditable(java.lang.String)
	 */
	@Override
	protected boolean isFeatureEditable(final String propertyPath) {
		boolean result;

		switch (propertyPath) {
		case PRIVATE_STORAGE:
			result = true;
			break;
		case USE_INTERNATIONALIZATION:
			result = true;
			break;
		case LANGUAGE:
			result = true;
			break;
		default:
			result = super.isFeatureEditable(propertyPath);
			break;
		}

		return result;
	}

	/**
	 * {@inheritDoc}
	 * 
	 * @see org.eclipse.papyrus.infra.properties.ui.modelelement.EMFModelElement#isElementEditable()
	 */
	@Override
	protected boolean isElementEditable() {
		return true;
	}
}

Back to the top