/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.e4.emf.xpath.test.model.xpathtest; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Root</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.e4.emf.xpath.test.model.xpathtest.Root#getNodes <em>Nodes</em>}</li> * <li>{@link org.eclipse.e4.emf.xpath.test.model.xpathtest.Root#getId <em>Id</em>}</li> * </ul> * </p> * * @see org.eclipse.e4.emf.xpath.test.model.xpathtest.XpathtestPackage#getRoot() * @model * @generated */ public interface Root extends EObject { /** * Returns the value of the '<em><b>Nodes</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.e4.emf.xpath.test.model.xpathtest.Node}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Nodes</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Nodes</em>' containment reference list. * @see org.eclipse.e4.emf.xpath.test.model.xpathtest.XpathtestPackage#getRoot_Nodes() * @model containment="true" * @generated */ EList<Node> getNodes(); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see org.eclipse.e4.emf.xpath.test.model.xpathtest.XpathtestPackage#getRoot_Id() * @model * @generated */ String getId(); /** * Sets the value of the '{@link org.eclipse.e4.emf.xpath.test.model.xpathtest.Root#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); } // Root