blob: fce649339b980dbda2f50952dec3350567e1ef88 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2011 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:
*
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.uml.diagram.common.edit.part;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.uml2.uml.Slot;
/**
* Edit part for {@link Slot} used as Child label node.
*/
public class SlotChildLabelEditPart extends AbstractElementChildLabelEditPart {
/** Constructor */
public SlotChildLabelEditPart(View view) {
super(view);
}
/**
* {@inheritDoc}
*/
@Override
protected void createDefaultEditPolicies() {
super.createDefaultEditPolicies();
}
}