Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 75e2120f90f09e0ac562c761b5144089a7ce8c86 (plain) (tree)























                                                                                     
                                                                                                                                      

         
                                                                                                                    


              
                                                                   







                                                                             


                                                                    

                                                                    
                                                                                                                                     





                                  
                                                                                                                                                                      







                                                                             
                              
/**
 * Copyright (c) 2015 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.infra.gmfdiag.common.expansionmodel;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>GMFT Based Representation</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link org.eclipse.papyrus.infra.gmfdiag.common.expansionmodel.GMFT_BasedRepresentation#getReusedID <em>Reused ID</em>}</li>
 * </ul>
 *
 * @see org.eclipse.papyrus.infra.gmfdiag.common.expansionmodel.ExpansionmodelPackage#getGMFT_BasedRepresentation()
 * @model
 * @generated
 */
public interface GMFT_BasedRepresentation extends Representation {
	/**
	 * Returns the value of the '<em><b>Reused ID</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Reused ID</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * In this case this is the visualID defined in gmf diagram
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Reused ID</em>' attribute.
	 * @see #setReusedID(String)
	 * @see org.eclipse.papyrus.infra.gmfdiag.common.expansionmodel.ExpansionmodelPackage#getGMFT_BasedRepresentation_ReusedID()
	 * @model ordered="false"
	 * @generated
	 */
	String getReusedID();

	/**
	 * Sets the value of the '{@link org.eclipse.papyrus.infra.gmfdiag.common.expansionmodel.GMFT_BasedRepresentation#getReusedID <em>Reused ID</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Reused ID</em>' attribute.
	 * @see #getReusedID()
	 * @generated
	 */
	void setReusedID(String value);

} // GMFT_BasedRepresentation

Back to the top