blob: 56a4e5c723a1c75afcac223cb5b5d743495725d7 [file] [log] [blame]
/**
* Copyright (c) 2010, 2015 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:
* Frederic Madiot (Mia-Software) - metamodel design and initial implementation
* Grégoire Dupé (Mia-Software) - Bug 480183 - The manifest.mf discoverer should manage 'Export-Package'
*/
package org.eclipse.modisco.manifest;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Required Bundle</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.modisco.manifest.RequiredBundle#getSymbolicName <em>Symbolic Name</em>}</li>
* <li>{@link org.eclipse.modisco.manifest.RequiredBundle#getVersion <em>Version</em>}</li>
* </ul>
*
* @see org.eclipse.modisco.manifest.ManifestPackage#getRequiredBundle()
* @model
* @generated
*/
public interface RequiredBundle extends EObject {
/**
* Returns the value of the '<em><b>Symbolic Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Symbolic 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>Symbolic Name</em>' attribute.
* @see #setSymbolicName(String)
* @see org.eclipse.modisco.manifest.ManifestPackage#getRequiredBundle_SymbolicName()
* @model
* @generated
*/
String getSymbolicName();
/**
* Sets the value of the '{@link org.eclipse.modisco.manifest.RequiredBundle#getSymbolicName <em>Symbolic Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Symbolic Name</em>' attribute.
* @see #getSymbolicName()
* @generated
*/
void setSymbolicName(String value);
/**
* Returns the value of the '<em><b>Version</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Version</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Version</em>' containment reference.
* @see #setVersion(Version)
* @see org.eclipse.modisco.manifest.ManifestPackage#getRequiredBundle_Version()
* @model containment="true"
* @generated
*/
Version getVersion();
/**
* Sets the value of the '{@link org.eclipse.modisco.manifest.RequiredBundle#getVersion <em>Version</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Version</em>' containment reference.
* @see #getVersion()
* @generated
*/
void setVersion(Version value);
} // RequiredBundle