/**
* Copyright (c) 2009-2010, University of Augsburg, Germany <www.ds-lab.org>
*
* 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: Christian Saad, Programming distributed Systems Lab, University
* of Augsburg - initial API and implementation
*/
package de.uniAugsburg.MAF.models.attrm;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Attr Const Instance</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link de.uniAugsburg.MAF.models.attrm.AttrConstInstance#isPassed <em>Passed</em>}</li>
* <li>{@link de.uniAugsburg.MAF.models.attrm.AttrConstInstance#getMessage <em>Message</em>}</li>
* </ul>
* </p>
*
* @see de.uniAugsburg.MAF.models.attrm.attrmPackage#getAttrConstInstance()
* @model
* @generated
*/
public interface AttrConstInstance extends AttrInstance
{
/**
* Returns the value of the '<em><b>Passed</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Passed</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Passed</em>' attribute.
* @see #setPassed(boolean)
* @see de.uniAugsburg.MAF.models.attrm.attrmPackage#getAttrConstInstance_Passed()
* @model
* @generated
*/
boolean isPassed();
/**
* Sets the value of the '{@link de.uniAugsburg.MAF.models.attrm.AttrConstInstance#isPassed <em>Passed</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Passed</em>' attribute.
* @see #isPassed()
* @generated
*/
void setPassed(boolean value);
/**
* Returns the value of the '<em><b>Message</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Message</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Message</em>' attribute.
* @see #setMessage(String)
* @see de.uniAugsburg.MAF.models.attrm.attrmPackage#getAttrConstInstance_Message()
* @model
* @generated
*/
String getMessage();
/**
* Sets the value of the '{@link de.uniAugsburg.MAF.models.attrm.AttrConstInstance#getMessage <em>Message</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Message</em>' attribute.
* @see #getMessage()
* @generated
*/
void setMessage(String value);
} // AttrConstInstance
|