iceman
iceman

Reputation: 4261

Visual state chart editor

Is there a tool similar to Eclipse Based Visual SCXML Editor for constructing Harel State Tables? Currently the status in the project page is code unreleased. how do i install the plugin?

Upvotes: 5

Views: 6072

Answers (2)

Phrogz
Phrogz

Reputation: 303136

I have created a (free) open-source extension for VS Code which lets you edit your SCXML file in XML and visually at the same time: Visual SCXML Editor

The eventual, pipe-dream goal might be a visual editor that is full-featured enough to stand on its own: to let you fully inspect and edit all aspects of a statechart without ever touching the XML. That's not the current goal, though. The near-term goal (mostly achieved) is to allow you to reason about a statechart visually, and clean up the visuals (moving things around) using graphical editing wherever it is appropriate.

All feature requests and TODO items are tracked on the GitHub repo; if the plugin is missing a feature you desire, please add it there.

Upvotes: 2

jbeard4
jbeard4

Reputation: 12821

There is this tool, which appears to be under active development: http://code.google.com/p/scxmlgui/

For a commercial tool, MagicDraw supports drawing UML state machines, as well as graphically simulating them using their Cameo Simulation Toolkit and the Apache Commons SCXML project: https://www.nomagic.com/products/magicdraw

Upvotes: 5

Related Questions