Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bbff436f6ac398dde4ec23aed4cb58a4359eb73f (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
/*****************************************************************************
 * Copyright (c) 2015 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:
 *   Celine Janssens (ALL4TEC) celine.janssens@all4tec.net - Initial API and implementation
 *   Celine Janssens (ALL4TEC) celine.janssens@all4tec.net - Bug 460356 : Refactor Stereotype Display
 *   
 *****************************************************************************/

package org.eclipse.papyrus.uml.diagram.common.stereotype;


/**
 * This enumeration is used to list the existing possible locations of a Stereotype property to be displayed
 * 
 * @author Céline JANSSENS
 *
 */
public enum StereotypeLocationEnum {
	/**
	 * Defines the Brace Label on top of the figure that contains the list of Stereotype Properties
	 */
	IN_BRACE,

	/**
	 * Defines the Compartment into the figure dedicated to the Stereotype Properties
	 */
	IN_COMPARTMENT,

	/**
	 * Defines the Brace Label into a separate Comment Figure that contains the list of Stereotype Properties
	 * {@link Deprecated Not used}
	 */
	@Deprecated IN_COMMENT_BRACE,

	/**
	 * Defines the Compartment into a separate Comment Figure dedicated to the Stereotype Properties
	 */
	IN_COMMENT


}

Back to the top