Accessing Elements
Last updated
Last updated
In this chapter, we're going to learn how to access elements. Before you read this chapter, you need to have clear understanding of the difference between software model and diagram as well as model elements and view elements. If you don't know about this, please read Basic Concepts first.
In the following sections, we will use an example software model as shown in the below figure. Actual model file can be obtained from here: https://github.com/staruml/staruml-dev-docs/blob/master/samples/Book.mdj. There are two classes Book and Author and a association wrote connecting between the two classes. In addition, there is a diagram named Main which containing three view elements, each corresponds to Book, Author, wrote respectively. All these elements and a diagram are contained by a model named Model which is also contained by the top-level project element named Book Sample.
First we will access to the top-level project element. The top-level project element can be obtained by using app.project
.
Note
all Javascript code examples can be executed in console (select Debug > Show DevTools and then click Console tab).
The obtained element is just a Javascript object, so you can access to any fields such as project.name
or project.ownedElements[0]
. Printing the element itself in console like console.log(project)
is helpful to get all information about the element.
Then, how can we know which classes of elements are available and which attributes or operations are available for each class of elements? You can find documentations of the metamodel at Metamodel documentation or additionally at API Reference.
You can access to any elements via the top-level project. Containment structure is shown in Explorer of the above capture image.
So far we inspected model elements only, now you will see the view elements contained by the diagram Main.
Each element has a corresponding Javascript class definition. The class definitions are in a global variable type
.
Accessing elements from the top-level project is very inconvenient and tedious. How can we get all elements of UMLClass
type? To retrieve elements easily, StarUML provides a very simple query expression.
Following are several examples for query expression. To see the full specification of query expression, refer to https://github.com/staruml/metadata-json/wiki/SelectorExpression.