/******************************************************************************* * 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.AvmField; import org.axdt.avm.model.AvmTypeReference; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Doc Field</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.axdt.asdoc.model.AsdocField#isConstant <em>Constant</em>}</li> * <li>{@link org.axdt.asdoc.model.AsdocField#getType <em>Type</em>}</li> * </ul> * </p> * * @see org.axdt.asdoc.AsdocEPackage#getAsdocField() * @model * @generated */ public interface AsdocField extends AsdocMember, AvmField { /** * Returns the value of the '<em><b>Constant</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Constant</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Constant</em>' attribute. * @see #setConstant(boolean) * @see org.axdt.asdoc.AsdocEPackage#getAsdocField_Constant() * @model * @generated */ boolean isConstant(); /** * Sets the value of the '{@link org.axdt.asdoc.model.AsdocField#isConstant <em>Constant</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Constant</em>' attribute. * @see #isConstant() * @generated */ void setConstant(boolean value); /** * Returns the value of the '<em><b>Type</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' containment reference. * @see #setType(AvmTypeReference) * @see org.axdt.asdoc.AsdocEPackage#getAsdocField_Type() * @model containment="true" * @generated */ AvmTypeReference getType(); /** * Sets the value of the '{@link org.axdt.asdoc.model.AsdocField#getType <em>Type</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' containment reference. * @see #getType() * @generated */ void setType(AvmTypeReference value); } // AsdocField