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

org.eclipse.xtext.xbase.XCasePart 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.emf.ecore.EObject;

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

/**
 * 
 * A representation of the model object 'XCase Part'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.eclipse.xtext.xbase.XCasePart#getCase Case}
  • *
  • {@link org.eclipse.xtext.xbase.XCasePart#getThen Then}
  • *
  • {@link org.eclipse.xtext.xbase.XCasePart#getTypeGuard Type Guard}
  • *
*

* * @see org.eclipse.xtext.xbase.XbasePackage#getXCasePart() * @model * @generated */ public interface XCasePart extends EObject { /** * Returns the value of the 'Case' containment reference. * *

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

* * @return the value of the 'Case' containment reference. * @see #setCase(XExpression) * @see org.eclipse.xtext.xbase.XbasePackage#getXCasePart_Case() * @model containment="true" * @generated */ XExpression getCase(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XCasePart#getCase Case}' containment reference. * * * @param value the new value of the 'Case' containment reference. * @see #getCase() * @generated */ void setCase(XExpression value); /** * Returns the value of the 'Then' containment reference. * *

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

* * @return the value of the 'Then' containment reference. * @see #setThen(XExpression) * @see org.eclipse.xtext.xbase.XbasePackage#getXCasePart_Then() * @model containment="true" * @generated */ XExpression getThen(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XCasePart#getThen Then}' containment reference. * * * @param value the new value of the 'Then' containment reference. * @see #getThen() * @generated */ void setThen(XExpression value); /** * Returns the value of the 'Type Guard' containment reference. * *

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

* * @return the value of the 'Type Guard' containment reference. * @see #setTypeGuard(JvmTypeReference) * @see org.eclipse.xtext.xbase.XbasePackage#getXCasePart_TypeGuard() * @model containment="true" * @generated */ JvmTypeReference getTypeGuard(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XCasePart#getTypeGuard Type Guard}' containment reference. * * * @param value the new value of the 'Type Guard' containment reference. * @see #getTypeGuard() * @generated */ void setTypeGuard(JvmTypeReference value); } // XCasePart




© 2015 - 2025 Weber Informatics LLC | Privacy Policy