blob: dbc1dfd83444e3f8d811a0054b873ed8160d11fb [file] [log] [blame]
/**
* Copyright (c) 2017 CEA LIST
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
*/
package org.eclipse.papyrus.robotics.profile.robotics.components;
import org.eclipse.emf.common.util.EList;
import org.eclipse.papyrus.robotics.bpc.profile.bpc.Entity;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Component Definition Model</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.robotics.profile.robotics.components.ComponentDefinitionModel#getBase_Package <em>Base Package</em>}</li>
* <li>{@link org.eclipse.papyrus.robotics.profile.robotics.components.ComponentDefinitionModel#getDependsPackage <em>Depends Package</em>}</li>
* <li>{@link org.eclipse.papyrus.robotics.profile.robotics.components.ComponentDefinitionModel#isRegistered <em>Registered</em>}</li>
* <li>{@link org.eclipse.papyrus.robotics.profile.robotics.components.ComponentDefinitionModel#isExternal <em>External</em>}</li>
* <li>{@link org.eclipse.papyrus.robotics.profile.robotics.components.ComponentDefinitionModel#getLicense <em>License</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.robotics.profile.robotics.components.ComponentsPackage#getComponentDefinitionModel()
* @model
* @generated
*/
public interface ComponentDefinitionModel extends Entity {
/**
* Returns the value of the '<em><b>Base Package</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Package</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Base Package</em>' reference.
* @see #setBase_Package(org.eclipse.uml2.uml.Package)
* @see org.eclipse.papyrus.robotics.profile.robotics.components.ComponentsPackage#getComponentDefinitionModel_Base_Package()
* @model required="true" ordered="false"
* @generated
*/
org.eclipse.uml2.uml.Package getBase_Package();
/**
* Sets the value of the '{@link org.eclipse.papyrus.robotics.profile.robotics.components.ComponentDefinitionModel#getBase_Package <em>Base Package</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Package</em>' reference.
* @see #getBase_Package()
* @generated
*/
void setBase_Package(org.eclipse.uml2.uml.Package value);
/**
* Returns the value of the '<em><b>Depends Package</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Depends Package</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Depends Package</em>' attribute list.
* @see org.eclipse.papyrus.robotics.profile.robotics.components.ComponentsPackage#getComponentDefinitionModel_DependsPackage()
* @model dataType="org.eclipse.uml2.types.String" ordered="false"
* @generated
*/
EList<String> getDependsPackage();
/**
* Returns the value of the '<em><b>Registered</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Registered</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Registered</em>' attribute.
* @see #setRegistered(boolean)
* @see org.eclipse.papyrus.robotics.profile.robotics.components.ComponentsPackage#getComponentDefinitionModel_Registered()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isRegistered();
/**
* Sets the value of the '{@link org.eclipse.papyrus.robotics.profile.robotics.components.ComponentDefinitionModel#isRegistered <em>Registered</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Registered</em>' attribute.
* @see #isRegistered()
* @generated
*/
void setRegistered(boolean value);
/**
* Returns the value of the '<em><b>External</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>External</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>External</em>' attribute.
* @see #setExternal(boolean)
* @see org.eclipse.papyrus.robotics.profile.robotics.components.ComponentsPackage#getComponentDefinitionModel_External()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isExternal();
/**
* Sets the value of the '{@link org.eclipse.papyrus.robotics.profile.robotics.components.ComponentDefinitionModel#isExternal <em>External</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>External</em>' attribute.
* @see #isExternal()
* @generated
*/
void setExternal(boolean value);
/**
* Returns the value of the '<em><b>License</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>License</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>License</em>' attribute.
* @see #setLicense(String)
* @see org.eclipse.papyrus.robotics.profile.robotics.components.ComponentsPackage#getComponentDefinitionModel_License()
* @model dataType="org.eclipse.uml2.types.String" ordered="false"
* @generated
*/
String getLicense();
/**
* Sets the value of the '{@link org.eclipse.papyrus.robotics.profile.robotics.components.ComponentDefinitionModel#getLicense <em>License</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>License</em>' attribute.
* @see #getLicense()
* @generated
*/
void setLicense(String value);
} // ComponentDefinitionModel