Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b3637226e3c424aa1c8db716529959ed601388e7 (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
/*****************************************************************************
 * Copyright (c) 2010 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:
 *  Remi Schnekenburger (CEA LIST) remi.schnekenburger@cea.fr - Initial API and implementation
 *****************************************************************************/
package org.eclipse.papyrus.properties.runtime.view;

import java.util.List;

import org.eclipse.papyrus.properties.runtime.view.constraints.IConstraintDescriptor;
import org.w3c.dom.Node;



/**
 * Abstract Descriptors that contains a list of constraints, has a unique identifier and holds a list of created containers
 */
public abstract class AbstractConstrainedDescriptor implements IConfigurableDescriptor {

	/** id of the dialog */
	protected final String id;

	/** list of constraints that applies to the dialog (kind of manipulated element, etc) */
	protected final List<IConstraintDescriptor> constraints;

	/** unparsed content node */
	protected Node contentNode;

	/** boolean that indicates that the content node has not been parsed yet */
	protected boolean unparsed = false;

	/** indicates if the parsing of the content node failed. not used currently, here to handle errors in a better way */
	protected boolean parseFailed = false;

	/** parser of the content node */
	protected final PropertyViewProviderParser parser;

	/** size of the selection */
	private int selectionSize;

	/**
	 * Creates a new AbstractConstrainedDescriptor.
	 * 
	 * @param id
	 *        id of the descriptor
	 * @param constraints
	 *        constraints applying to this descriptor
	 * @param selectionSize
	 *        size of the selection for which this descriptor is valid
	 * 
	 */
	public AbstractConstrainedDescriptor(String id, List<IConstraintDescriptor> constraints, int selectionSize) {
		this.id = id;
		this.constraints = constraints;
		this.parser = null;
		this.selectionSize = selectionSize;
	}

	/**
	 * Creates a new AbstractConstrainedDescriptor.
	 * 
	 * @param id
	 *        id of the descriptor
	 * @param constraints
	 *        constraints applying to this descriptor
	 * @param contentNode
	 *        the configuration node for this descriptor
	 * @param selectionSize
	 *        size of the selection for which this descriptor is valid
	 * @param parser
	 *        the parser used to parse the configuration node
	 * 
	 */
	public AbstractConstrainedDescriptor(String id, List<IConstraintDescriptor> constraints, Node contentNode, int selectionSize, PropertyViewProviderParser parser) {
		this.id = id;
		this.constraints = constraints;
		this.contentNode = contentNode;
		this.parser = parser;
		this.selectionSize = selectionSize;
		unparsed = true;
	}

	/**
	 * Returns the list of containers descriptors
	 * 
	 * @return the list of containers descriptors
	 */
	public List<IConstraintDescriptor> getConstraintDescriptors() {
		return constraints;
	}

	/**
	 * Returns the id of this descriptor
	 * 
	 * @return the id of this descriptor
	 */
	public String getId() {
		return id;
	}


	/**
	 * Returns the size of the selection
	 * 
	 * @return the size of the selection
	 */
	public int getSelectionSize() {
		return selectionSize;
	}

}

Back to the top