Skip to content

Commit fdb38dc

Browse files
committed
update
1 parent 19f9e87 commit fdb38dc

File tree

2 files changed

+141
-89
lines changed

2 files changed

+141
-89
lines changed

README.md

+16-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77

88
Currently, this tool is deployed at http://www.cin.ufpe.br/~jhcp/pistar/
99

10-
Please check out our [requirements doc](docs/REQUIREMENTS.md), our [development instructions](docs/), and our [contributors list](CONTRIBUTORS.md). You can also see the [list of published work that has used this tool](RESEARCH.md).
10+
Please check out our [requirements doc](docs/REQUIREMENTS.md), our [development instructions](docs/), and
11+
our [contributors list](CONTRIBUTORS.md). You can also see
12+
the [list of published work that has used this tool](RESEARCH.md).
1113

1214
For further information please contact jhcp at cin ufpe br
1315

@@ -20,7 +22,7 @@ istar.addActor('Gary');
2022
istar.addAgent('Quinn', {position: {x: 400, y:50}});
2123
```
2224

23-
- Get the content of each element of the model:
25+
- Get the label of each element of the model:
2426
```javascript
2527
_.map(istar.getElements(), function(node) { return node.prop('name'); });
2628
```
@@ -32,17 +34,23 @@ ui.getSelectedCells()[0].isGoal();
3234

3335
- Highlight every neighbor of the selected element (for this you first need to click on an element of the goal model):
3436
```javascript
35-
_.map(istar.graph.getNeighbors(ui.getSelectedCells()[0]), function(node) { istar.paper.findViewByModel(node).highlight(); });
37+
_.forEach(istar.graph.getNeighbors(ui.getSelectedCells()[0]), function(node) { istar.paper.findViewByModel(node).highlight(); });
3638
```
3739

3840
## Licensing
39-
This is open-source, you can fork and use it as you see fit. Push requests are very welcome, we will add you to our [contributors list](CONTRIBUTORS.md)!
41+
This is open-source, you can fork and use it as you see fit. Pull requests are very welcome - we will add
42+
you to our [contributors list](CONTRIBUTORS.md)!
4043

41-
Of course, the world is a better place when we work together to make it better. So, if you want to extend the tool with some functionality that you think will be useful to others, please get in touch so that we can make it available for everybody. In the future we plan to provide support for plugins, so stay tuned.
44+
Of course, the world is a better place when we work together to make it better. So, if you want to extend the tool
45+
with some functionality that you think will be useful to others, please get in touch so that we can make it available
46+
for everybody.
4247

4348
## Referencing
44-
If you need to mention the piStar tool, please reference this publication: Pimentel, João and Castro, Jaelson. piStar Tool – A Pluggable Online Tool for Goal Modeling. 2018 IEEE 26th International Requirements Engineering Conference, pp. 498-499.
49+
If you need to mention the piStar tool, please reference this publication: Pimentel, João and Castro, Jaelson.
50+
piStar Tool – A Pluggable Online Tool for Goal Modeling. 2018 IEEE 26th International Requirements Engineering
51+
Conference, pp. 498-499.
4552

4653
## Thanks!
47-
- Thank you very much, developers around the world whom created the awesome libraries we use. This project would be much much harder without them. Especially [JointJS](https://www.jointjs.com/) :heart:
48-
- Thank you thank you iStar 2.0 language commitee. For the language itself, and for your early support.
54+
- Thank you very much, developers around the world whom created the awesome libraries we use. This project
55+
- would be much much harder without them. Especially [JointJS](https://www.jointjs.com/) :heart:
56+
- Thank you, iStar 2.0 language commitee. For the language itself, and for your early support.

0 commit comments

Comments
 (0)