/** * <copyright> * </copyright> * * $Id$ */ package org.flowerplatform.codesync.code.javascript.regex_ast; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Node Parameter</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstNodeParameter#getName <em>Name</em>}</li> * <li>{@link org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstNodeParameter#getValue <em>Value</em>}</li> * <li>{@link org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstNodeParameter#getOffset <em>Offset</em>}</li> * <li>{@link org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstNodeParameter#getLength <em>Length</em>}</li> * </ul> * </p> * * @see org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstPackage#getRegExAstNodeParameter() * @model * @generated */ public interface RegExAstNodeParameter extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstPackage#getRegExAstNodeParameter_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstNodeParameter#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value</em>' attribute. * @see #setValue(String) * @see org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstPackage#getRegExAstNodeParameter_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstNodeParameter#getValue <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' attribute. * @see #getValue() * @generated */ void setValue(String value); /** * Returns the value of the '<em><b>Offset</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Offset</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Offset</em>' attribute. * @see #setOffset(int) * @see org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstPackage#getRegExAstNodeParameter_Offset() * @model transient="true" * @generated */ int getOffset(); /** * Sets the value of the '{@link org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstNodeParameter#getOffset <em>Offset</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Offset</em>' attribute. * @see #getOffset() * @generated */ void setOffset(int value); /** * Returns the value of the '<em><b>Length</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Length</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Length</em>' attribute. * @see #setLength(int) * @see org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstPackage#getRegExAstNodeParameter_Length() * @model transient="true" * @generated */ int getLength(); /** * Sets the value of the '{@link org.flowerplatform.codesync.code.javascript.regex_ast.RegExAstNodeParameter#getLength <em>Length</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Length</em>' attribute. * @see #getLength() * @generated */ void setLength(int value); } // RegExAstNodeParameter