Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

ETrice/Development/Implementation ideas

< ETrice‎ | Development
Revision as of 08:11, 16 August 2012 by Unnamed Poltroon (Talk) (read-only mode of the editor)

Implementation Ideas and Details

Xtext

Graphiti

For the implementation of state machine animation we need

  • multiple instances of one diagram (several editors for one file)
  • highlighting of states and transitions
  • read-only mode of the editor

read-only mode of the editor

The read-only mode of the editor can be achieved by using the ConfigurableFeatureProviderWrapper. It checks whether the ToolBehaviorProvider is an instance of IFeatureCheckerHolder and if so retrieves its FeatureChecker. For this the FeatureCheckerAdapter can be used.

multiple instances of one diagram

Derive from FileEditorInput and let this class hold the instance path. Derive from DiagramEditorMatchingStrategy and extend the matching strategy.

Back to the top