/** * Copyright (c) 2011 Hannes Niederhausen. * 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: * Hannes Niederhausen - Initial API and implementation * */ package de.hannesniederhausen.storynotes.model; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Project</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link de.hannesniederhausen.storynotes.model.Project#getName <em>Name</em>}</li> * <li>{@link de.hannesniederhausen.storynotes.model.Project#getDescription <em>Description</em>}</li> * <li>{@link de.hannesniederhausen.storynotes.model.Project#getCategories <em>Categories</em>}</li> * </ul> * </p> * * @see de.hannesniederhausen.storynotes.model.StorynotesPackage#getProject() * @model * @generated */ public interface Project extends FileElement { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see de.hannesniederhausen.storynotes.model.StorynotesPackage#getProject_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link de.hannesniederhausen.storynotes.model.Project#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Description</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Description</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Description</em>' attribute. * @see #setDescription(String) * @see de.hannesniederhausen.storynotes.model.StorynotesPackage#getProject_Description() * @model * @generated */ String getDescription(); /** * Sets the value of the '{@link de.hannesniederhausen.storynotes.model.Project#getDescription <em>Description</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Description</em>' attribute. * @see #getDescription() * @generated */ void setDescription(String value); /** * Returns the value of the '<em><b>Categories</b></em>' containment reference list. * The list contents are of type {@link de.hannesniederhausen.storynotes.model.Category}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Categories</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Categories</em>' containment reference list. * @see de.hannesniederhausen.storynotes.model.StorynotesPackage#getProject_Categories() * @model containment="true" * @generated */ EList<Category> getCategories(); } // Project