/* * Copyright (c) 2009, 2011-2013, 2015 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.model2; import org.eclipse.emf.ecore.EObject; /** * A representation of the model object 'Transient Container'. *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.tests.model2.Model2Package#getTransientContainer() * @model * @generated */ public interface TransientContainer extends EObject { /** * Returns the value of the 'Attr Before' attribute. * *

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

* * @return the value of the 'Attr Before' attribute. * @see #setAttrBefore(String) * @see org.eclipse.emf.cdo.tests.model2.Model2Package#getTransientContainer_AttrBefore() * @model * @generated */ String getAttrBefore(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model2.TransientContainer#getAttrBefore Attr Before}' attribute. * * @param value the new value of the 'Attr Before' attribute. * @see #getAttrBefore() * @generated */ void setAttrBefore(String value); /** * Returns the value of the 'Parent' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.emf.cdo.tests.model2.PersistentContainment#getChildren Children}'. * *

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

* * @return the value of the 'Parent' container reference. * @see #setParent(PersistentContainment) * @see org.eclipse.emf.cdo.tests.model2.Model2Package#getTransientContainer_Parent() * @see org.eclipse.emf.cdo.tests.model2.PersistentContainment#getChildren * @model opposite="children" * @generated */ PersistentContainment getParent(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model2.TransientContainer#getParent Parent}' container reference. * * @param value the new value of the 'Parent' container reference. * @see #getParent() * @generated */ void setParent(PersistentContainment value); /** * Returns the value of the 'Attr After' attribute. * *

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

* * @return the value of the 'Attr After' attribute. * @see #setAttrAfter(String) * @see org.eclipse.emf.cdo.tests.model2.Model2Package#getTransientContainer_AttrAfter() * @model * @generated */ String getAttrAfter(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model2.TransientContainer#getAttrAfter Attr After}' attribute. * * @param value the new value of the 'Attr After' attribute. * @see #getAttrAfter() * @generated */ void setAttrAfter(String value); } // TransientContainer