783784785786787788789790791792
private void endChoose() { choose = null; } private void startWhen(Attributes attrs) { When branch = new When(); choose.addBranch(branch); branch.setCondition(attrs.getValue("test")); startSectionContainer(branch); }
794795796797798799800801802
private void endWhen() { endSectionContainer(); } private void startOtherwise(Attributes attrs) { When branch = new When(); choose.addBranch(branch); startSectionContainer(branch); }