All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.xtext.xbase.XVariableDeclaration Maven / Gradle / Ivy

/**
 * Copyright (c) 2011 itemis AG (http://www.itemis.eu) and others.
 * 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
 */
package org.eclipse.xtext.xbase;

import org.eclipse.xtext.common.types.JvmIdentifiableElement;
import org.eclipse.xtext.common.types.JvmTypeReference;

/**
 * 
 * A representation of the model object 'XVariable Declaration'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.eclipse.xtext.xbase.XVariableDeclaration#getType Type}
  • *
  • {@link org.eclipse.xtext.xbase.XVariableDeclaration#getName Name}
  • *
  • {@link org.eclipse.xtext.xbase.XVariableDeclaration#getRight Right}
  • *
  • {@link org.eclipse.xtext.xbase.XVariableDeclaration#isWriteable Writeable}
  • *
*

* * @see org.eclipse.xtext.xbase.XbasePackage#getXVariableDeclaration() * @model * @generated */ public interface XVariableDeclaration extends XExpression, JvmIdentifiableElement { /** * Returns the value of the 'Type' containment reference. * *

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

* * @return the value of the 'Type' containment reference. * @see #setType(JvmTypeReference) * @see org.eclipse.xtext.xbase.XbasePackage#getXVariableDeclaration_Type() * @model containment="true" * @generated */ JvmTypeReference getType(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XVariableDeclaration#getType Type}' containment reference. * * * @param value the new value of the 'Type' containment reference. * @see #getType() * @generated */ void setType(JvmTypeReference value); /** * 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.xtext.xbase.XbasePackage#getXVariableDeclaration_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XVariableDeclaration#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Right' containment reference. * *

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

* * @return the value of the 'Right' containment reference. * @see #setRight(XExpression) * @see org.eclipse.xtext.xbase.XbasePackage#getXVariableDeclaration_Right() * @model containment="true" * @generated */ XExpression getRight(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XVariableDeclaration#getRight Right}' containment reference. * * * @param value the new value of the 'Right' containment reference. * @see #getRight() * @generated */ void setRight(XExpression value); /** * Returns the value of the 'Writeable' attribute. * *

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

* * @return the value of the 'Writeable' attribute. * @see #setWriteable(boolean) * @see org.eclipse.xtext.xbase.XbasePackage#getXVariableDeclaration_Writeable() * @model * @generated */ boolean isWriteable(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XVariableDeclaration#isWriteable Writeable}' attribute. * * * @param value the new value of the 'Writeable' attribute. * @see #isWriteable() * @generated */ void setWriteable(boolean value); } // XVariableDeclaration




© 2015 - 2025 Weber Informatics LLC | Privacy Policy