blob: e427aea05e01eff47429f0f376a393d36a4ef8da [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.qvtd.xml;
import org.eclipse.emf.ecore.EDataType;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Data Type Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.xml.DataTypeElement#getEcoreDataType <em>Ecore Data Type</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getDataTypeElement()
* @model
* @generated
*/
public interface DataTypeElement extends Element {
/**
* Returns the value of the '<em><b>Ecore Data Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ecore Data Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Ecore Data Type</em>' reference.
* @see #setEcoreDataType(EDataType)
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getDataTypeElement_EcoreDataType()
* @model resolveProxies="false" required="true" transient="true"
* @generated
*/
EDataType getEcoreDataType();
/**
* Sets the value of the '{@link org.eclipse.qvtd.xml.DataTypeElement#getEcoreDataType <em>Ecore Data Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ecore Data Type</em>' reference.
* @see #getEcoreDataType()
* @generated
*/
void setEcoreDataType(EDataType value);
} // DataTypeElement