Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1c7a82d11a17f4ac48ecb7b18cbf65fe92953212 (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
/*****************************************************************************
 * Copyright (c) 2017 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:
 *  Pauline DEVILLE (CEA LIST) - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.uml.diagram.activity.edit.policies;

import org.eclipse.draw2d.PositionConstants;
import org.eclipse.papyrus.uml.diagram.activity.locator.ActivityParameterNodePositionLocator;
import org.eclipse.papyrus.uml.diagram.common.editpolicies.SideAffixedNodesCreationEditPolicy;
import org.eclipse.papyrus.uml.diagram.common.locator.ISideAffixedNodeBorderItemLocator;

/**
 * This class extends {@link SideAffixedNodesCreationEditPolicy} to redefine the PositionLocator
 * and use the {@link ActivityParameterNodePositionLocator}
 */
public class ActivitySideAffixedNodesCreationEditPolicy extends SideAffixedNodesCreationEditPolicy {

	/**
	 * @see org.eclipse.papyrus.uml.diagram.common.editpolicies.SideAffixedNodesCreationEditPolicy#getPositionLocator()
	 *
	 * @return
	 */
	@Override
	protected ISideAffixedNodeBorderItemLocator getPositionLocator() {
		return new ActivityParameterNodePositionLocator(getHostFigure(), PositionConstants.NONE);
	}

}

Back to the top