/* * Copyright (c) 2003- michael lawley and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation * which accompanies this distribution, and is available by writing to * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Contributors: * michael lawley * * * $Id$ */ package tefkat.model; 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.model.NamespaceDeclaration#getPrefix <em>Prefix</em>}</li> * <li>{@link tefkat.model.NamespaceDeclaration#getURI <em>URI</em>}</li> * </ul> * </p> * * @see tefkat.model.TefkatPackage#getNamespaceDeclaration() * @model * @generated */ public interface NamespaceDeclaration extends EObject { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright michael lawley Pty Ltd 2003-2007"; /** * 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.model.TefkatPackage#getNamespaceDeclaration_Prefix() * @model * @generated */ String getPrefix(); /** * Sets the value of the '{@link tefkat.model.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.model.TefkatPackage#getNamespaceDeclaration_URI() * @model * @generated */ String getURI(); /** * Sets the value of the '{@link tefkat.model.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