/** * <copyright> * </copyright> * * $Id: Element.java,v 1.1 2010/11/30 08:23:18 glefur Exp $ */ package org.eclipse.emf.eef.eefnr.navigation; import org.eclipse.emf.eef.eefnr.NamedElement; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.eef.eefnr.navigation.Element#isVisible <em>Visible</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.eef.eefnr.navigation.NavigationPackage#getElement() * @model * @generated */ public interface Element extends NamedElement { /** * Returns the value of the '<em><b>Visible</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Visible</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Visible</em>' attribute. * @see #setVisible(boolean) * @see org.eclipse.emf.eef.eefnr.navigation.NavigationPackage#getElement_Visible() * @model * @generated */ boolean isVisible(); /** * Sets the value of the '{@link org.eclipse.emf.eef.eefnr.navigation.Element#isVisible <em>Visible</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Visible</em>' attribute. * @see #isVisible() * @generated */ void setVisible(boolean value); } // Element