/** * Copyright (c) 2011 Mia-Software. * * 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: * Gregoire Dupe (Mia-Software) - Bug 361794 - [Restructuring] New customization meta-model * Gregoire Dupe (Mia-Software) - Bug 369987 - [Restructuring][Table] Switch to the new customization and facet framework * Gregoire Dupe (Mia-Software) - Bug 373078 - API Cleaning */ package org.eclipse.emf.facet.custom.metamodel.v0_2_0.custom; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.ETypedElement; import org.eclipse.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; /** * * A representation of the model object 'ETyped Element Case'. * * * * Case part of the ETypedElementSwitchQuery. * * *

* The following features are supported: *

*

* * @see org.eclipse.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#getETypedElementCase() * @model * @generated */ public interface ETypedElementCase extends EObject { /** * Returns the value of the 'Case' reference. * *

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

* * @return the value of the 'Case' reference. * @see #setCase(ETypedElement) * @see org.eclipse.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#getETypedElementCase_Case() * @model required="true" * @generated */ ETypedElement getCase(); /** * Sets the value of the '{@link org.eclipse.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase#getCase Case}' reference. * * * @param value the new value of the 'Case' reference. * @see #getCase() * @generated */ void setCase(ETypedElement value); /** * Returns the value of the 'Value' containment reference. * *

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

* * @return the value of the 'Value' containment reference. * @see #setValue(Query) * @see org.eclipse.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#getETypedElementCase_Value() * @model containment="true" * @generated */ Query getValue(); /** * Sets the value of the '{@link org.eclipse.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase#getValue Value}' containment reference. * * * @param value the new value of the 'Value' containment reference. * @see #getValue() * @generated */ void setValue(Query value); } // ETypedElementCase