/******************************************************************************* * 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.AvmMember; import org.axdt.avm.model.AvmVisibility; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Doc Member</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.axdt.asdoc.model.AsdocMember#getVisibility <em>Visibility</em>}</li> * <li>{@link org.axdt.asdoc.model.AsdocMember#isStatic <em>Static</em>}</li> * </ul> * </p> * * @see org.axdt.asdoc.AsdocEPackage#getAsdocMember() * @model abstract="true" * @generated */ public interface AsdocMember extends AsdocDefinition, AvmMember { /** * Returns the value of the '<em><b>Visibility</b></em>' attribute. * The default value is <code>"3"</code>. * The literals are from the enumeration {@link org.axdt.avm.model.AvmVisibility}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Visibility</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Visibility</em>' attribute. * @see org.axdt.avm.model.AvmVisibility * @see #setVisibility(AvmVisibility) * @see org.axdt.asdoc.AsdocEPackage#getAsdocMember_Visibility() * @model default="3" * @generated */ AvmVisibility getVisibility(); /** * Sets the value of the '{@link org.axdt.asdoc.model.AsdocMember#getVisibility <em>Visibility</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Visibility</em>' attribute. * @see org.axdt.avm.model.AvmVisibility * @see #getVisibility() * @generated */ void setVisibility(AvmVisibility value); /** * Returns the value of the '<em><b>Static</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Static</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Static</em>' attribute. * @see #setStatic(boolean) * @see org.axdt.asdoc.AsdocEPackage#getAsdocMember_Static() * @model * @generated */ boolean isStatic(); /** * Sets the value of the '{@link org.axdt.asdoc.model.AsdocMember#isStatic <em>Static</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Static</em>' attribute. * @see #isStatic() * @generated */ void setStatic(boolean value); } // AsdocMember