Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2ea0d49afda96c1b3e1774fe3d84363ccdffe120 (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
/*****************************************************************************
 * 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:
 *  Yann Tanguy (CEA LIST) yann.tanguy@cea.fr - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.diagram.component.custom.edit.policies;

import org.eclipse.papyrus.uml.diagram.component.custom.edit.part.CustomPropertyPartEditPartCN;


/**
 * This edit policy replaces the GMF generated edit policy for Property used as Part in composite structure diagram.
 * In particular it provides a getCreateCommands that add a ChangeBoundRequest on a created Port
 * in order to locate it at the cursor position.
 * This class inherits from StructuredClassifierLayoutEditPolicy which provides support for a correct placement of
 * port during creation.
 * An example of code generated by GMF can be found in {@link CustomPropertyPartEditPartCN#createLayoutEditPolicy()}.
 */
public class PropertyLayoutEditPolicy extends StructuredClassifierLayoutEditPolicy {

}

Back to the top