/** * 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; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>File</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link de.hannesniederhausen.storynotes.model.File#getFilename <em>Filename</em>}</li> * <li>{@link de.hannesniederhausen.storynotes.model.File#getAuthor <em>Author</em>}</li> * <li>{@link de.hannesniederhausen.storynotes.model.File#getVersion <em>Version</em>}</li> * <li>{@link de.hannesniederhausen.storynotes.model.File#getProjects <em>Projects</em>}</li> * </ul> * </p> * * @see de.hannesniederhausen.storynotes.model.StorynotesPackage#getFile() * @model * @generated */ public interface File extends EObject { /** * Returns the value of the '<em><b>Filename</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Filename</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Filename</em>' attribute. * @see #setFilename(String) * @see de.hannesniederhausen.storynotes.model.StorynotesPackage#getFile_Filename() * @model transient="true" * @generated */ String getFilename(); /** * Sets the value of the '{@link de.hannesniederhausen.storynotes.model.File#getFilename <em>Filename</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Filename</em>' attribute. * @see #getFilename() * @generated */ void setFilename(String value); /** * Returns the value of the '<em><b>Author</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Author</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Author</em>' attribute. * @see #setAuthor(String) * @see de.hannesniederhausen.storynotes.model.StorynotesPackage#getFile_Author() * @model required="true" * @generated */ String getAuthor(); /** * Sets the value of the '{@link de.hannesniederhausen.storynotes.model.File#getAuthor <em>Author</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Author</em>' attribute. * @see #getAuthor() * @generated */ void setAuthor(String value); /** * Returns the value of the '<em><b>Version</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Version</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Version</em>' attribute. * @see #setVersion(String) * @see de.hannesniederhausen.storynotes.model.StorynotesPackage#getFile_Version() * @model required="true" * @generated */ String getVersion(); /** * Sets the value of the '{@link de.hannesniederhausen.storynotes.model.File#getVersion <em>Version</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Version</em>' attribute. * @see #getVersion() * @generated */ void setVersion(String value); /** * Returns the value of the '<em><b>Projects</b></em>' containment reference list. * The list contents are of type {@link de.hannesniederhausen.storynotes.model.Project}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Projects</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>Projects</em>' containment reference list. * @see de.hannesniederhausen.storynotes.model.StorynotesPackage#getFile_Projects() * @model containment="true" * @generated */ EList<Project> getProjects(); } // File