Skip to content
Snippets Groups Projects
Commit ae451d02 authored by nullsub's avatar nullsub
Browse files

update containsCompartmentVisitor todo

parent c23bb276
Branches
Tags v0.0
No related merge requests found
......@@ -183,7 +183,17 @@ public class ConstraintRuleVisitor {
}
private boolean containsCompartmentVisitor(ContainsCompartment rule) {
System.out.println("containsCompartmentVisitor: TODO, implement!: " + this.diagram.getChildren().toString());
System.out.println("containsCompartmentVisitor: TODO: " + this.diagram.getChildren().toString());
if(this.context instanceof CreateContext) {
CreateContext ctx = (CreateContext)this.context;
System.out.println(ctx.getTargetContainer().eContents().toString());
for(Shape action : ctx.getTargetContainer().getChildren()) {
System.out.println(action.toString());
System.out.println(action.eResource());
System.out.println(action.getClass());
}
}
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment