/** * 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; /** * * A representation of the model object 'Node Opposite Ref One To One'. * * *

* The following features are supported: *

* * * @see org.eclipse.emf.compare.tests.nodes.NodesPackage#getNodeOppositeRefOneToOne() * @model * @generated */ public interface NodeOppositeRefOneToOne extends Node { /** * * * @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 'Source' reference. * It is bidirectional and its opposite is '{@link org.eclipse.emf.compare.tests.nodes.NodeOppositeRefOneToOne#getDestination Destination}'. * *

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

* * @return the value of the 'Source' reference. * @see #setSource(NodeOppositeRefOneToOne) * @see org.eclipse.emf.compare.tests.nodes.NodesPackage#getNodeOppositeRefOneToOne_Source() * @see org.eclipse.emf.compare.tests.nodes.NodeOppositeRefOneToOne#getDestination * @model opposite="destination" * @generated */ NodeOppositeRefOneToOne getSource(); /** * Sets the value of the '{@link org.eclipse.emf.compare.tests.nodes.NodeOppositeRefOneToOne#getSource Source}' reference. * * * @param value the new value of the 'Source' reference. * @see #getSource() * @generated */ void setSource(NodeOppositeRefOneToOne value); /** * Returns the value of the 'Destination' reference. * It is bidirectional and its opposite is '{@link org.eclipse.emf.compare.tests.nodes.NodeOppositeRefOneToOne#getSource Source}'. * *

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

* * @return the value of the 'Destination' reference. * @see #setDestination(NodeOppositeRefOneToOne) * @see org.eclipse.emf.compare.tests.nodes.NodesPackage#getNodeOppositeRefOneToOne_Destination() * @see org.eclipse.emf.compare.tests.nodes.NodeOppositeRefOneToOne#getSource * @model opposite="source" * @generated */ NodeOppositeRefOneToOne getDestination(); /** * Sets the value of the '{@link org.eclipse.emf.compare.tests.nodes.NodeOppositeRefOneToOne#getDestination Destination}' reference. * * * @param value the new value of the 'Destination' reference. * @see #getDestination() * @generated */ void setDestination(NodeOppositeRefOneToOne value); } // NodeOppositeRefOneToOne