Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Papyrus for Sysml

Revision as of 09:52, 15 July 2015 by Mauricio.alferez.cea.fr (Talk | contribs) (The Requirement model)

Structure

Each plugin contains a UML model that allows to design plugins inside SysML.

The name of the root model must be the name of the current plugin.

This UML model contains 4 sub-models:

  1. a model of Requirements
  2. a model of Use Cases
  3. a model of Design
  4. a model of Test

GeneralStructure.png

The Requirements model

The requirement contains all the requirements dedicated to the current plug-in.

  • Rule: The requirement model cannot contain sub-models or sub-packages. It must contain a hierarchy of requirements.

Requirement

Each requirement has an id that has the following grammar:

<Requirement id>::="Req_"<digit><digit><digit>

For example, "Req_001" can be the first top requirement inside the plugin.

If a requirement is contained inside another requirement, add a dot with 3 new digits.

A requirement contained inside the first requirement has the following id:"Req_001.001"

Back to the top