/** * Copyright (c) 2011, 2012 Obeo. * 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 * * Contributors: * Obeo - initial API and implementation */ package org.eclipse.emf.compare.tests.nodes; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Node'. * * *

* The following features are supported: *

* * * @see org.eclipse.emf.compare.tests.nodes.NodesPackage#getNode() * @model * @generated */ public interface Node extends EObject { /** * * * @generated */ String copyright = "Copyright (c) 2011, 2012 Obeo.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Obeo - initial API and implementation"; //$NON-NLS-1$ /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.emf.compare.tests.nodes.NodesPackage#getNode_Name() * @model id="true" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.emf.compare.tests.nodes.Node#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Containment Ref1' containment reference list. * The list contents are of type {@link org.eclipse.emf.compare.tests.nodes.Node}. * *

* If the meaning of the 'Containment Ref1' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Containment Ref1' containment reference list. * @see org.eclipse.emf.compare.tests.nodes.NodesPackage#getNode_ContainmentRef1() * @model containment="true" resolveProxies="true" * @generated */ EList getContainmentRef1(); } // Node