/** * <copyright> * </copyright> * * $Id: VariableDeclaration.java,v 1.3 2011/04/18 08:29:43 apanchenk Exp $ */ package org.eclipse.dltk.javascript.core.dom; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Variable Declaration</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.dltk.javascript.core.dom.VariableDeclaration#getIdentifier <em>Identifier</em>}</li> * <li>{@link org.eclipse.dltk.javascript.core.dom.VariableDeclaration#getInitializer <em>Initializer</em>}</li> * </ul> * </p> * * @see org.eclipse.dltk.javascript.core.dom.DomPackage#getVariableDeclaration() * @model * @generated */ public interface VariableDeclaration extends Node { /** * Returns the value of the '<em><b>Identifier</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Identifier</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Identifier</em>' containment reference. * @see #setIdentifier(Identifier) * @see org.eclipse.dltk.javascript.core.dom.DomPackage#getVariableDeclaration_Identifier() * @model containment="true" required="true" * @generated */ Identifier getIdentifier(); /** * Sets the value of the '{@link org.eclipse.dltk.javascript.core.dom.VariableDeclaration#getIdentifier <em>Identifier</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Identifier</em>' containment reference. * @see #getIdentifier() * @generated */ void setIdentifier(Identifier value); /** * Returns the value of the '<em><b>Initializer</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Initializer</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Initializer</em>' containment reference. * @see #setInitializer(Expression) * @see org.eclipse.dltk.javascript.core.dom.DomPackage#getVariableDeclaration_Initializer() * @model containment="true" * @generated */ Expression getInitializer(); /** * Sets the value of the '{@link org.eclipse.dltk.javascript.core.dom.VariableDeclaration#getInitializer <em>Initializer</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Initializer</em>' containment reference. * @see #getInitializer() * @generated */ void setInitializer(Expression value); } // VariableDeclaration