blob: 6437b87df6ff060d7939d5e44a0cd34516d8d164 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2009 Mia-Software.
* 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:
*
* Sebastien Minguet (Mia-Software) - initial API and implementation
* Frederic Madiot (Mia-Software) - initial API and implementation
* Fabien Giquel (Mia-Software) - initial API and implementation
* Gabriel Barbier (Mia-Software) - initial API and implementation
* Erwan Breton (Sodifrance) - initial API and implementation
* Romain Dervaux (Mia-Software) - initial API and implementation
* *******************************************************************************
*
* $Id$
*/
package org.eclipse.gmt.modisco.java;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Manifest</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmt.modisco.java.Manifest#getMainAttributes <em>Main Attributes</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.java.Manifest#getEntryAttributes <em>Entry Attributes</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmt.modisco.java.emf.JavaPackage#getManifest()
* @model
* @generated
*/
public interface Manifest extends EObject {
/**
* Returns the value of the '<em><b>Main Attributes</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.gmt.modisco.java.ManifestAttribute}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Main Attributes</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>Main Attributes</em>' containment reference list.
* @see org.eclipse.gmt.modisco.java.emf.JavaPackage#getManifest_MainAttributes()
* @model containment="true" ordered="false"
* @generated
*/
EList<ManifestAttribute> getMainAttributes();
/**
* Returns the value of the '<em><b>Entry Attributes</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.gmt.modisco.java.ManifestEntry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Entry Attributes</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>Entry Attributes</em>' containment reference list.
* @see org.eclipse.gmt.modisco.java.emf.JavaPackage#getManifest_EntryAttributes()
* @model containment="true" ordered="false"
* @generated
*/
EList<ManifestEntry> getEntryAttributes();
} // Manifest