/******************************************************************************* * Copyright (c) 2011 Guillaume Hillairet. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Guillaume Hillairet - initial API and implementation *******************************************************************************/ package com.emf4sw.rdf; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>URI Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.emf4sw.rdf.URIElement#getURI <em>URI</em>}</li> * <li>{@link com.emf4sw.rdf.URIElement#getNamespace <em>Namespace</em>}</li> * </ul> * </p> * * @see com.emf4sw.rdf.RDFPackage#getURIElement() * @model abstract="true" * @generated */ public interface URIElement extends EObject { /** * 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 com.emf4sw.rdf.RDFPackage#getURIElement_URI() * @model id="true" required="true" * annotation="Id base=''" * @generated */ String getURI(); /** * Sets the value of the '{@link com.emf4sw.rdf.URIElement#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>Namespace</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Namespace</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Namespace</em>' reference. * @see #setNamespace(Namespace) * @see com.emf4sw.rdf.RDFPackage#getURIElement_Namespace() * @model * @generated */ Namespace getNamespace(); /** * Sets the value of the '{@link com.emf4sw.rdf.URIElement#getNamespace <em>Namespace</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Namespace</em>' reference. * @see #getNamespace() * @generated */ void setNamespace(Namespace value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ String getLocalName(); } // URIElement