/* * Copyright 2014 Bernd Vogt and others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.sourcepit.b2.model.module; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Feature Project</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.sourcepit.b2.model.module.FeatureProject#getParent <em>Parent</em>}</li> * <li>{@link org.sourcepit.b2.model.module.FeatureProject#getIncludedPlugins <em>Included Plugins</em>}</li> * <li>{@link org.sourcepit.b2.model.module.FeatureProject#getIncludedFeatures <em>Included Features</em>}</li> * <li>{@link org.sourcepit.b2.model.module.FeatureProject#getRequiredFeatures <em>Required Features</em>}</li> * <li>{@link org.sourcepit.b2.model.module.FeatureProject#getRequiredPlugins <em>Required Plugins</em>}</li> * </ul> * </p> * * @see org.sourcepit.b2.model.module.ModuleModelPackage#getFeatureProject() * @model * @generated */ public interface FeatureProject extends Project { /** * Returns the value of the '<em><b>Parent</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.sourcepit.b2.model.module.FeaturesFacet#getProjects * <em>Projects</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parent</em>' container reference isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Parent</em>' container reference. * @see #setParent(FeaturesFacet) * @see org.sourcepit.b2.model.module.ModuleModelPackage#getFeatureProject_Parent() * @see org.sourcepit.b2.model.module.FeaturesFacet#getProjects * @model opposite="projects" transient="false" * @generated */ FeaturesFacet getParent(); /** * Sets the value of the '{@link org.sourcepit.b2.model.module.FeatureProject#getParent <em>Parent</em>}' container * reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @param value the new value of the '<em>Parent</em>' container reference. * @see #getParent() * @generated */ void setParent(FeaturesFacet value); /** * Returns the value of the '<em><b>Included Plugins</b></em>' containment reference list. * The list contents are of type {@link org.sourcepit.b2.model.module.PluginInclude}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Included Plugins</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>Included Plugins</em>' containment reference list. * @see org.sourcepit.b2.model.module.ModuleModelPackage#getFeatureProject_IncludedPlugins() * @model containment="true" resolveProxies="true" * @generated */ EList<PluginInclude> getIncludedPlugins(); /** * Returns the value of the '<em><b>Included Features</b></em>' containment reference list. * The list contents are of type {@link org.sourcepit.b2.model.module.FeatureInclude}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Included Features</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>Included Features</em>' containment reference list. * @see org.sourcepit.b2.model.module.ModuleModelPackage#getFeatureProject_IncludedFeatures() * @model containment="true" resolveProxies="true" * @generated */ EList<FeatureInclude> getIncludedFeatures(); /** * Returns the value of the '<em><b>Required Features</b></em>' containment reference list. * The list contents are of type {@link org.sourcepit.b2.model.module.RuledReference}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Required Features</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>Required Features</em>' containment reference list. * @see org.sourcepit.b2.model.module.ModuleModelPackage#getFeatureProject_RequiredFeatures() * @model containment="true" resolveProxies="true" * @generated */ EList<RuledReference> getRequiredFeatures(); /** * Returns the value of the '<em><b>Required Plugins</b></em>' containment reference list. * The list contents are of type {@link org.sourcepit.b2.model.module.RuledReference}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Required Plugins</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>Required Plugins</em>' containment reference list. * @see org.sourcepit.b2.model.module.ModuleModelPackage#getFeatureProject_RequiredPlugins() * @model containment="true" resolveProxies="true" * @generated */ EList<RuledReference> getRequiredPlugins(); } // FeatureProject