/** * <copyright> * </copyright> * * $Id$ */ package eu.geclipse.jsdl.model.functions; import java.math.BigInteger; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Exception Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link eu.geclipse.jsdl.model.functions.ExceptionType#getValue <em>Value</em>}</li> * </ul> * </p> * * @see eu.geclipse.jsdl.model.functions.FunctionsPackage#getExceptionType() * @model extendedMetaData="name='Exception_._type' kind='empty'" * @generated */ public interface ExceptionType extends EObject { /** * Returns the value of the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value</em>' attribute. * @see #setValue(BigInteger) * @see eu.geclipse.jsdl.model.functions.FunctionsPackage#getExceptionType_Value() * @model dataType="org.eclipse.emf.ecore.xml.type.Integer" * extendedMetaData="kind='attribute' name='value' namespace='##targetNamespace'" * @generated */ BigInteger getValue(); /** * Sets the value of the '{@link eu.geclipse.jsdl.model.functions.ExceptionType#getValue <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' attribute. * @see #getValue() * @generated */ void setValue(BigInteger value); } // ExceptionType