Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b62d8b1cb05ca116b0ac630653e947b7df29f781 (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
/*****************************************************************************
 * Copyright (c) 2019 CEA LIST and others.
 *
 * 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
 * http://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *   Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
 *
 *****************************************************************************/

package org.eclipse.papyrus.emf.ui.properties;

import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
import org.eclipse.emf.edit.ui.provider.PropertyDescriptor;
import org.eclipse.jface.viewers.CellEditor;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.papyrus.emf.ui.editor.factories.AbstractEStructuralFeatureDialogEditorFactory;
import org.eclipse.swt.widgets.Composite;

/**
 * Property Descriptor used to contribute to the Papyrus Advanced Property View
 */
public class CustomPropertyDescriptor extends PropertyDescriptor {

	/**
	 * the factory to use to edit the property
	 */
	private final AbstractEStructuralFeatureDialogEditorFactory factory;

	/**
	 * Constructor.
	 *
	 * @param object
	 * @param itemPropertyDescriptor
	 */
	public CustomPropertyDescriptor(final Object object, final IItemPropertyDescriptor itemPropertyDescriptor, final AbstractEStructuralFeatureDialogEditorFactory factory) {
		super(object, itemPropertyDescriptor);
		this.factory = factory;
	}

	/**
	 * @see org.eclipse.emf.edit.ui.provider.PropertyDescriptor#createPropertyEditor(org.eclipse.swt.widgets.Composite)
	 *
	 * @param composite
	 * @return
	 */
	@Override
	public final CellEditor createPropertyEditor(final Composite composite) {
		return this.factory.createEditor(this.object, this.itemPropertyDescriptor, composite);
	}

	/**
	 * @see org.eclipse.emf.edit.ui.provider.PropertyDescriptor#getLabelProvider()
	 *
	 * @return
	 */
	@Override
	public final ILabelProvider getLabelProvider() {
		return this.factory.getOrCreateLabelProvider();
	}

}

Back to the top