/******************************************************************************* * Copyright (c) 2010 Martin Schnabel <mb0@mb0.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 ******************************************************************************/ package org.axdt.asdoc.model; import org.axdt.avm.model.AvmOperation; import org.axdt.avm.model.AvmTypeReference; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Doc Operation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.axdt.asdoc.model.AsdocOperation#isNative <em>Native</em>}</li> * <li>{@link org.axdt.asdoc.model.AsdocOperation#isOverride <em>Override</em>}</li> * <li>{@link org.axdt.asdoc.model.AsdocOperation#getReturnType <em>Return Type</em>}</li> * <li>{@link org.axdt.asdoc.model.AsdocOperation#isFinal <em>Final</em>}</li> * </ul> * </p> * * @see org.axdt.asdoc.AsdocEPackage#getAsdocOperation() * @model * @generated */ public interface AsdocOperation extends AsdocExecutable, AvmOperation { /** * Returns the value of the '<em><b>Native</b></em>' attribute. * The default value is <code>"false"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Native</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Native</em>' attribute. * @see #setNative(boolean) * @see org.axdt.asdoc.AsdocEPackage#getAsdocOperation_Native() * @model default="false" ordered="false" * @generated */ boolean isNative(); /** * Sets the value of the '{@link org.axdt.asdoc.model.AsdocOperation#isNative <em>Native</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Native</em>' attribute. * @see #isNative() * @generated */ void setNative(boolean value); /** * Returns the value of the '<em><b>Override</b></em>' attribute. * The default value is <code>"false"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Override</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Override</em>' attribute. * @see #setOverride(boolean) * @see org.axdt.asdoc.AsdocEPackage#getAsdocOperation_Override() * @model default="false" ordered="false" * @generated */ boolean isOverride(); /** * Sets the value of the '{@link org.axdt.asdoc.model.AsdocOperation#isOverride <em>Override</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Override</em>' attribute. * @see #isOverride() * @generated */ void setOverride(boolean value); /** * Returns the value of the '<em><b>Return Type</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Return Type</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Return Type</em>' containment reference. * @see #setReturnType(AvmTypeReference) * @see org.axdt.asdoc.AsdocEPackage#getAsdocOperation_ReturnType() * @model containment="true" * @generated */ AvmTypeReference getReturnType(); /** * Sets the value of the '{@link org.axdt.asdoc.model.AsdocOperation#getReturnType <em>Return Type</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Return Type</em>' containment reference. * @see #getReturnType() * @generated */ void setReturnType(AvmTypeReference value); /** * Returns the value of the '<em><b>Final</b></em>' attribute. * The default value is <code>"false"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Final</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Final</em>' attribute. * @see #setFinal(boolean) * @see org.axdt.asdoc.AsdocEPackage#getAsdocOperation_Final() * @model default="false" ordered="false" * @generated */ boolean isFinal(); /** * Sets the value of the '{@link org.axdt.asdoc.model.AsdocOperation#isFinal <em>Final</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Final</em>' attribute. * @see #isFinal() * @generated */ void setFinal(boolean value); } // AsdocOperation