blob: 323209f5391542d3df0abc015d1004a6718d323d [file] [log] [blame]
/**
* Copyright (c) 2018 CEA
*
* 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:
* Jérémie Tatibouet (CEA) jeremie.tatibouet@cea.fr - Initial API and implementation
* Benoit Maggi (CEA) benoit.maggi@cea.fr - Initial API and implementation
* Shuai Li (CEA) shuai.li@cea.fr - Integration of sensiNact and Web of Things Thing Description
*
*/
package org.eclipse.papyrus.iotml.wot;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.Namespace;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Context</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.iotml.wot.Context#getUri <em>Uri</em>}</li>
* <li>{@link org.eclipse.papyrus.iotml.wot.Context#getBase_Namespace <em>Base Namespace</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.iotml.wot.WoTPackage#getContext()
* @model
* @generated
*/
public interface Context 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 org.eclipse.papyrus.iotml.wot.WoTPackage#getContext_Uri()
* @model dataType="org.eclipse.uml2.types.String" required="true" ordered="false"
* @generated
*/
String getUri();
/**
* Sets the value of the '{@link org.eclipse.papyrus.iotml.wot.Context#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>Base Namespace</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base 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>Base Namespace</em>' reference.
* @see #setBase_Namespace(Namespace)
* @see org.eclipse.papyrus.iotml.wot.WoTPackage#getContext_Base_Namespace()
* @model ordered="false"
* @generated
*/
Namespace getBase_Namespace();
/**
* Sets the value of the '{@link org.eclipse.papyrus.iotml.wot.Context#getBase_Namespace <em>Base Namespace</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Namespace</em>' reference.
* @see #getBase_Namespace()
* @generated
*/
void setBase_Namespace(Namespace value);
} // Context