/** * 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 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * CEA LIST - Initial API and implementation * */ package org.eclipse.papyrus.gmf.codegen.genextension; import org.eclipse.emf.common.util.EList; import org.eclipse.papyrus.gmf.codegen.gmfgen.GenNode; /** * * A representation of the model object 'Specific Node Plate'. * * * * This element is always linked to a genView (topLevel, or child) * Used set if an editPart is abstract. * SuperGenViews is a list of all superEditPart. * * Thanks to this, it is possible to factorize code and to decrease the number of generated classes. * * *

* The following features are supported: *

* * * @see org.eclipse.papyrus.gmf.codegen.genextension.GenExtensionPackage#getSpecificNodePlate() * @model * @generated */ public interface SpecificNodePlate extends CommentedElement { /** * Returns the value of the 'Edit Parts' reference list. * The list contents are of type {@link org.eclipse.papyrus.gmf.codegen.gmfgen.GenNode}. * *

* If the meaning of the 'Edit Parts' reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Edit Parts' reference list. * @see org.eclipse.papyrus.gmf.codegen.genextension.GenExtensionPackage#getSpecificNodePlate_EditParts() * @model required="true" ordered="false" * @generated */ EList getEditParts(); /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.papyrus.gmf.codegen.genextension.GenExtensionPackage#getSpecificNodePlate_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.papyrus.gmf.codegen.genextension.SpecificNodePlate#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Node Plate Qualified Name' attribute. * *

* If the meaning of the 'Node Plate Qualified Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Node Plate Qualified Name' attribute. * @see #setNodePlateQualifiedName(String) * @see org.eclipse.papyrus.gmf.codegen.genextension.GenExtensionPackage#getSpecificNodePlate_NodePlateQualifiedName() * @model * @generated */ String getNodePlateQualifiedName(); /** * Sets the value of the '{@link org.eclipse.papyrus.gmf.codegen.genextension.SpecificNodePlate#getNodePlateQualifiedName Node Plate Qualified Name}' attribute. * * * @param value the new value of the 'Node Plate Qualified Name' attribute. * @see #getNodePlateQualifiedName() * @generated */ void setNodePlateQualifiedName(String value); } // SpecificNodePlate