blob: 4801d0bac62404110abb88be2ed5efe09de3f7b8 [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.EClassifier;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.xml.Element#getLocalName <em>Local Name</em>}</li>
* <li>{@link org.eclipse.qvtd.xml.Element#getQName <em>QName</em>}</li>
* <li>{@link org.eclipse.qvtd.xml.Element#getUri <em>Uri</em>}</li>
* <li>{@link org.eclipse.qvtd.xml.Element#getEcoreClassifier <em>Ecore Classifier</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getElement()
* @model
* @generated
*/
public interface Element extends Node {
/**
* Returns the value of the '<em><b>Local Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Local Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Local Name</em>' attribute.
* @see #setLocalName(String)
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getElement_LocalName()
* @model required="true" ordered="false"
* @generated
*/
String getLocalName();
/**
* Sets the value of the '{@link org.eclipse.qvtd.xml.Element#getLocalName <em>Local Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Local Name</em>' attribute.
* @see #getLocalName()
* @generated
*/
void setLocalName(String value);
/**
* Returns the value of the '<em><b>QName</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>QName</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>QName</em>' attribute.
* @see #setQName(String)
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getElement_QName()
* @model required="true" ordered="false"
* @generated
*/
String getQName();
/**
* Sets the value of the '{@link org.eclipse.qvtd.xml.Element#getQName <em>QName</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>QName</em>' attribute.
* @see #getQName()
* @generated
*/
void setQName(String value);
/**
* Returns the value of the '<em><b>Uri</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Uri</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Uri</em>' attribute.
* @see #setUri(String)
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getElement_Uri()
* @model required="true" ordered="false"
* @generated
*/
String getUri();
/**
* Sets the value of the '{@link org.eclipse.qvtd.xml.Element#getUri <em>Uri</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Uri</em>' attribute.
* @see #getUri()
* @generated
*/
void setUri(String value);
/**
* Returns the value of the '<em><b>Ecore Classifier</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ecore Classifier</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 Classifier</em>' reference.
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getElement_EcoreClassifier()
* @model resolveProxies="false" transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EClassifier getEcoreClassifier();
} // Element