|
@@ -262,7 +262,7 @@ Element function modify(model : Element, write : Boolean):
|
|
|
if (dict_in(model["model"], cmd)):
|
|
|
String t
|
|
|
output("Type of outgoing edge (empty for all)?")
|
|
|
- elems = readOutgoingAssociationInstances(model, cmd, input())
|
|
|
+ elems = allOutgoingAssociationInstances(model, cmd, input())
|
|
|
while (read_nr_out(elems) > 0):
|
|
|
output(set_pop(elems))
|
|
|
else:
|
|
@@ -275,7 +275,7 @@ Element function modify(model : Element, write : Boolean):
|
|
|
if (dict_in(model["model"], cmd)):
|
|
|
String t
|
|
|
output("Type of incoming edge (empty for all)?")
|
|
|
- elems = readIncomingAssociationInstances(model, cmd, input())
|
|
|
+ elems = allIncomingAssociationInstances(model, cmd, input())
|
|
|
while (read_nr_out(elems) > 0):
|
|
|
output(set_pop(elems))
|
|
|
else:
|