/**
* <copyright>
* </copyright>
*
* $Id$
*/
package tefkat.engine.runtime;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Namespace Declaration</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link tefkat.engine.runtime.NamespaceDeclaration#getPrefix <em>Prefix</em>}</li>
* <li>{@link tefkat.engine.runtime.NamespaceDeclaration#getURI <em>URI</em>}</li>
* </ul>
* </p>
*
* @see tefkat.engine.runtime.RuntimePackage#getNamespaceDeclaration()
* @model
* @generated
*/
public interface NamespaceDeclaration extends EObject {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright michael lawley 2004";
/**
* Returns the value of the '<em><b>Prefix</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Prefix</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Prefix</em>' attribute.
* @see #setPrefix(String)
* @see tefkat.engine.runtime.RuntimePackage#getNamespaceDeclaration_Prefix()
* @model
* @generated
*/
String getPrefix();
/**
* Sets the value of the '{@link tefkat.engine.runtime.NamespaceDeclaration#getPrefix <em>Prefix</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Prefix</em>' attribute.
* @see #getPrefix()
* @generated
*/
void setPrefix(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 tefkat.engine.runtime.RuntimePackage#getNamespaceDeclaration_URI()
* @model
* @generated
*/
String getURI();
/**
* Sets the value of the '{@link tefkat.engine.runtime.NamespaceDeclaration#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);
} // NamespaceDeclaration