blob: e165b90ceacb081ef3b9fcd95cd1b3d4eea2c942 [file] [log] [blame]
/**
* Copyright (c) 2018 Aston University.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License, v. 2.0 are satisfied: GNU General Public License, version 3.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-3.0
*
* Contributors:
* Antonio Garcia-Dominguez - initial API and implementation
*/
package org.eclipse.hawk.examples.docgen.model.document;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Collection</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.hawk.examples.docgen.model.document.Collection#getAuthors <em>Authors</em>}</li>
* <li>{@link org.eclipse.hawk.examples.docgen.model.document.Collection#getDocuments <em>Documents</em>}</li>
* <li>{@link org.eclipse.hawk.examples.docgen.model.document.Collection#getTags <em>Tags</em>}</li>
* </ul>
*
* @see org.eclipse.hawk.examples.docgen.model.document.DocumentPackage#getCollection()
* @model
* @generated
*/
public interface Collection extends EObject {
/**
* Returns the value of the '<em><b>Authors</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.hawk.examples.docgen.model.document.Author}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Authors</em>' containment reference list.
* @see org.eclipse.hawk.examples.docgen.model.document.DocumentPackage#getCollection_Authors()
* @model containment="true"
* @generated
*/
EList<Author> getAuthors();
/**
* Returns the value of the '<em><b>Documents</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.hawk.examples.docgen.model.document.Document}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Documents</em>' containment reference list.
* @see org.eclipse.hawk.examples.docgen.model.document.DocumentPackage#getCollection_Documents()
* @model containment="true"
* @generated
*/
EList<Document> getDocuments();
/**
* Returns the value of the '<em><b>Tags</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.hawk.examples.docgen.model.document.Tag}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Tags</em>' containment reference list.
* @see org.eclipse.hawk.examples.docgen.model.document.DocumentPackage#getCollection_Tags()
* @model containment="true"
* @generated
*/
EList<Tag> getTags();
} // Collection