org.eclipse.xtext.xbase.XCastedExpression 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.JvmTypeReference;
/**
*
* A representation of the model object 'XCasted Expression'.
*
*
*
* @since 2.7
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xtext.xbase.XCastedExpression#getType Type}
* - {@link org.eclipse.xtext.xbase.XCastedExpression#getTarget Target}
*
*
* @see org.eclipse.xtext.xbase.XbasePackage#getXCastedExpression()
* @model
* @generated
*/
public interface XCastedExpression extends XExpression
{
/**
* 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#getXCastedExpression_Type()
* @model containment="true"
* @generated
*/
JvmTypeReference getType();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XCastedExpression#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 'Target' containment reference.
*
*
* If the meaning of the 'Target' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Target' containment reference.
* @see #setTarget(XExpression)
* @see org.eclipse.xtext.xbase.XbasePackage#getXCastedExpression_Target()
* @model containment="true"
* @generated
*/
XExpression getTarget();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XCastedExpression#getTarget Target}' containment reference.
*
*
* @param value the new value of the 'Target' containment reference.
* @see #getTarget()
* @generated
*/
void setTarget(XExpression value);
} // XCastedExpression
© 2015 - 2025 Weber Informatics LLC | Privacy Policy