/** */ package org.xtext.nv.dsl.mMDSL; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Circle</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.xtext.nv.dsl.mMDSL.Circle#getCx <em>Cx</em>}</li> * <li>{@link org.xtext.nv.dsl.mMDSL.Circle#getCy <em>Cy</em>}</li> * <li>{@link org.xtext.nv.dsl.mMDSL.Circle#getR <em>R</em>}</li> * </ul> * </p> * * @see org.xtext.nv.dsl.mMDSL.MMDSLPackage#getCircle() * @model * @generated */ public interface Circle extends EObject { /** * Returns the value of the '<em><b>Cx</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Cx</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Cx</em>' attribute. * @see #setCx(String) * @see org.xtext.nv.dsl.mMDSL.MMDSLPackage#getCircle_Cx() * @model * @generated */ String getCx(); /** * Sets the value of the '{@link org.xtext.nv.dsl.mMDSL.Circle#getCx <em>Cx</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Cx</em>' attribute. * @see #getCx() * @generated */ void setCx(String value); /** * Returns the value of the '<em><b>Cy</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Cy</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Cy</em>' attribute. * @see #setCy(String) * @see org.xtext.nv.dsl.mMDSL.MMDSLPackage#getCircle_Cy() * @model * @generated */ String getCy(); /** * Sets the value of the '{@link org.xtext.nv.dsl.mMDSL.Circle#getCy <em>Cy</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Cy</em>' attribute. * @see #getCy() * @generated */ void setCy(String value); /** * Returns the value of the '<em><b>R</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>R</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>R</em>' attribute. * @see #setR(String) * @see org.xtext.nv.dsl.mMDSL.MMDSLPackage#getCircle_R() * @model * @generated */ String getR(); /** * Sets the value of the '{@link org.xtext.nv.dsl.mMDSL.Circle#getR <em>R</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>R</em>' attribute. * @see #getR() * @generated */ void setR(String value); } // Circle