blob: da94ff9de596be42c0ddbdc8ef90c1c56da2d871 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
*
* Fabien Giquel (Mia-Software) - initial API and implementation
* Gregoire DUPE (Mia-Software) - initial API and implementation
* *******************************************************************************
*/
package org.eclipse.modisco.java;
import org.eclipse.emf.cdo.CDOObject;
import org.eclipse.emf.common.util.EList;
import org.eclipse.modisco.java.ManifestAttribute;
import org.eclipse.modisco.java.ManifestEntry;
/**
* <!-- 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.modisco.java.Manifest#getMainAttributes <em>Main Attributes</em>}</li>
* <li>{@link org.eclipse.modisco.java.Manifest#getEntryAttributes <em>Entry Attributes</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.java.nousages.cdo.meta.JavaPackage#getManifest()
* @model
* @extends CDOObject
* @generated
*/
public interface Manifest extends CDOObject {
/**
* Returns the value of the '<em><b>Main Attributes</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.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.modisco.java.nousages.cdo.meta.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.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.modisco.java.nousages.cdo.meta.JavaPackage#getManifest_EntryAttributes()
* @model containment="true" ordered="false"
* @generated
*/
EList<ManifestEntry> getEntryAttributes();
} // Manifest