blob: ef8a09486ca30737aa6ddccaf3d23180b1d389a4 [file] [log] [blame]
/**
* Copyright (c) 2010, 2011 Obeo.
* 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:
* Obeo - initial API and implementation
*
*/
package org.eclipse.mylyn.docs.intent.retro;
import org.eclipse.emf.cdo.CDOObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Name Space</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mylyn.docs.intent.retro.NameSpace#getId <em>Id</em>}</li>
* <li>{@link org.eclipse.mylyn.docs.intent.retro.NameSpace#getCategory <em>Category</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mylyn.docs.intent.retro.RetroPackage#getNameSpace()
* @model
* @extends CDOObject
* @generated
*/
public interface NameSpace extends CDOObject {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) 2010, 2011 Obeo.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n\tObeo - initial API and implementation\r\n";
/**
* Returns the value of the '<em><b>Id</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Id</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Id</em>' attribute.
* @see #setId(String)
* @see org.eclipse.mylyn.docs.intent.retro.RetroPackage#getNameSpace_Id()
* @model required="true"
* @generated
*/
String getId();
/**
* Sets the value of the '{@link org.eclipse.mylyn.docs.intent.retro.NameSpace#getId <em>Id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Id</em>' attribute.
* @see #getId()
* @generated
*/
void setId(String value);
/**
* Returns the value of the '<em><b>Category</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Category</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Category</em>' reference.
* @see #setCategory(Category)
* @see org.eclipse.mylyn.docs.intent.retro.RetroPackage#getNameSpace_Category()
* @model required="true"
* @generated
*/
Category getCategory();
/**
* Sets the value of the '{@link org.eclipse.mylyn.docs.intent.retro.NameSpace#getCategory <em>Category</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Category</em>' reference.
* @see #getCategory()
* @generated
*/
void setCategory(Category value);
} // NameSpace