blob: 6c3b07073bf93d40f629240aeff0b4faed1a108d [file] [log] [blame]
/**
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Eugen Neufeld - initial API and implementation
*/
package org.eclipse.emf.ecp.view.spi.mappingdmr.model;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecp.view.spi.model.VDomainModelReference;
import org.eclipse.emf.ecp.view.spi.model.VFeaturePathDomainModelReference;
/**
* <!-- begin-user-doc --> A representation of the model object ' <em><b>Mapping Domain Model Reference</b></em>'. <!--
* end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingDomainModelReference#getMappedClass
* <em>Mapped Class</em>}</li>
* <li>
* {@link org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingDomainModelReference#getDomainModelReference
* <em>Domain Model Reference</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingdmrPackage#getMappingDomainModelReference()
* @model
* @generated
*/
public interface VMappingDomainModelReference extends
VFeaturePathDomainModelReference {
/**
* Returns the value of the '<em><b>Mapped Class</b></em>' reference. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Mapped Class</em>' reference isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Mapped Class</em>' reference.
* @see #setMappedClass(EClass)
* @see org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingdmrPackage#getMappingDomainModelReference_MappedClass()
* @model
* @generated
*/
EClass getMappedClass();
/**
* Sets the value of the '
* {@link org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingDomainModelReference#getMappedClass
* <em>Mapped Class</em>}' reference. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value
* the new value of the '<em>Mapped Class</em>' reference.
* @see #getMappedClass()
* @generated
*/
void setMappedClass(EClass value);
/**
* Returns the value of the '<em><b>Domain Model Reference</b></em>'
* containment reference. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Domain Model Reference</em>' containment reference isn't clear, there really should be
* more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Domain Model Reference</em>' containment
* reference.
* @see #setDomainModelReference(VDomainModelReference)
* @see org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingdmrPackage#getMappingDomainModelReference_DomainModelReference()
* @model containment="true" required="true"
* @generated
*/
VDomainModelReference getDomainModelReference();
/**
* Sets the value of the '
* {@link org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingDomainModelReference#getDomainModelReference
* <em>Domain Model Reference</em>}' containment reference. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Domain Model Reference</em>'
* containment reference.
* @see #getDomainModelReference()
* @generated
*/
void setDomainModelReference(VDomainModelReference value);
} // VMappingDomainModelReference