/* * Copyright (c) 2008, 2009, 2011-2013 Eike Stepper (Berlin, Germany) and others. * 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: * Eike Stepper - initial API and implementation */ package org.eclipse.emf.cdo.tests.model4interfaces; import org.eclipse.emf.ecore.EObject; /** * A representation of the model object 'IMulti Ref Non Contained Element'. * *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.tests.model4interfaces.model4interfacesPackage#getIMultiRefNonContainedElement() * @model interface="true" abstract="true" * @generated */ public interface IMultiRefNonContainedElement extends EObject { /** * Returns the value of the 'Parent' reference. It is bidirectional and its opposite is ' * {@link org.eclipse.emf.cdo.tests.model4interfaces.IMultiRefNonContainer#getElements Elements}'. *

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

* * * @return the value of the 'Parent' reference. * @see #setParent(IMultiRefNonContainer) * @see org.eclipse.emf.cdo.tests.model4interfaces.model4interfacesPackage#getIMultiRefNonContainedElement_Parent() * @see org.eclipse.emf.cdo.tests.model4interfaces.IMultiRefNonContainer#getElements * @model opposite="elements" * @generated */ IMultiRefNonContainer getParent(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model4interfaces.IMultiRefNonContainedElement#getParent Parent}' reference. * * @param value the new value of the 'Parent' reference. * @see #getParent() * @generated */ void setParent(IMultiRefNonContainer value); } // IMultiRefNonContainedElement