blob: 9913bc99688b9721cdfd0035f2be878d7ebac86f [file] [log] [blame]
/**
* * Copyright (c) 2008 Daniel Varro
* * 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
* *
* * Contributors:
* * Daniel Varro - initial API and implementation
*
*
* $Id$
*/
package org.eclipse.viatra2.gtasm.typerules;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Type Judgement</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.viatra2.gtasm.typerules.TypeJudgement#isIsValid <em>Is Valid</em>}</li>
* <li>{@link org.eclipse.viatra2.gtasm.typerules.TypeJudgement#getResult <em>Result</em>}</li>
* <li>{@link org.eclipse.viatra2.gtasm.typerules.TypeJudgement#getName <em>Name</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.viatra2.gtasm.typerules.TyperulesPackage#getTypeJudgement()
* @model abstract="true"
* @generated
*/
public interface TypeJudgement extends EObject {
/**
* Returns the value of the '<em><b>Is Valid</b></em>' attribute.
* The default value is <code>"true"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Valid</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Is Valid</em>' attribute.
* @see #setIsValid(boolean)
* @see org.eclipse.viatra2.gtasm.typerules.TyperulesPackage#getTypeJudgement_IsValid()
* @model default="true"
* @generated
*/
boolean isIsValid();
/**
* Sets the value of the '{@link org.eclipse.viatra2.gtasm.typerules.TypeJudgement#isIsValid <em>Is Valid</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Valid</em>' attribute.
* @see #isIsValid()
* @generated
*/
void setIsValid(boolean value);
/**
* Returns the value of the '<em><b>Result</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Result</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Result</em>' attribute.
* @see #setResult(String)
* @see org.eclipse.viatra2.gtasm.typerules.TyperulesPackage#getTypeJudgement_Result()
* @model
* @generated
*/
String getResult();
/**
* Sets the value of the '{@link org.eclipse.viatra2.gtasm.typerules.TypeJudgement#getResult <em>Result</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Result</em>' attribute.
* @see #getResult()
* @generated
*/
void setResult(String value);
/**
* 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.eclipse.viatra2.gtasm.typerules.TyperulesPackage#getTypeJudgement_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.viatra2.gtasm.typerules.TypeJudgement#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);
} // TypeJudgement