-
Where can I find a list or descriptions of the different elements predefined in eclipse-glsp/glsp-client? In the workflow-example the TaskNode extends the What does this mean in detail? How can I figure out how the many different predefined glsp elements look like or behave? The main problem is that none of the source code files provides any comments. Is there somewhere a readme file? Reverse engeneering from the workflow-example is a very time consuming and error-prone way. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Most of the node types and views are located in Sprotty. The same is true for the Those features are typically structured as follows: |
Beta Was this translation helpful? Give feedback.
Most of the node types and views are located in Sprotty.
The same is true for the
Nameable
andWithEditableLable
(see e.g. https://github.com/eclipse/sprotty/blob/master/packages/sprotty/src/features/edit/model.ts). These are extensions of the model with additional properties to enable certain additional client-side capabilities or behaviors, such as that you can invoke editing on a label or element that contains a label or that an element has a name and thus can be found by name.Those features are typically structured as follows:
Each feature is defined by the files within a folder under
features
. In this folder,model.ts
defines the model extensions required for the feature and thedi.…