Skip to main content
summaryrefslogtreecommitdiffstats
blob: 533facc453305ba4ee892ba39cb8b8e7b7c99547 (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
/*****************************************************************************
 * Copyright (c) 2010 Atos Origin.
 *
 *    
 * 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:
 *   Atos Origin - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.blockdiagram.figures;

import java.util.List;

import org.eclipse.draw2d.IFigure;
import org.eclipse.papyrus.diagram.common.figure.node.ClassifierFigure;


public class BlockFigure extends ClassifierFigure {

	/** The Constraint Compartment */
	private final static String CONSTRAINT_COMPARTMENT = "constraintCompartment";

	/** The Reference Compartment */
	private final static String REFERENCE_COMPARTMENT = "referenceCompartment";

	/** The Value Compartment */
	private final static String PART_COMPARTMENT = "partCompartment";

	/** The Value Compartment */
	private final static String VALUE_COMPARTMENT = "valueCompartment";

	public BlockFigure() {
		super();
	}

	/**
	 * 
	 * @param compartmentFigure
	 */
	protected void createContentPane(List<String> compartments) {
		super.createContentPane(updateCompartment(compartments));

	}

	private List<String> updateCompartment(List<String> compartments) {
		compartments.add(CONSTRAINT_COMPARTMENT);
		compartments.add(REFERENCE_COMPARTMENT);
		compartments.add(PART_COMPARTMENT);
		compartments.add(VALUE_COMPARTMENT);
		return compartments;
	}

	/**
	 * Get the constraint's compartment figure
	 * 
	 * @return
	 */
	public IFigure getConstraintCompartmentFigure() {
		return getCompartment(CONSTRAINT_COMPARTMENT);
	}

	/**
	 * Get the Reference's compartment figure
	 * 
	 * @return
	 */
	public IFigure getReferenceCompartmentFigure() {
		return getCompartment(REFERENCE_COMPARTMENT);
	}

	/**
	 * Get the Part's compartment figure
	 * 
	 * @return
	 */
	public IFigure getPartCompartmentFigure() {
		return getCompartment(PART_COMPARTMENT);
	}

	/**
	 * Get the Value's compartment figure
	 * 
	 * @return
	 */
	public IFigure getValueCompartmentFigure() {
		return getCompartment(VALUE_COMPARTMENT);
	}
}

Back to the top