}
if (qName.equals("item")) {
String repeat = attributes.getValue("repeat");
if (repeat != null) {
newRule = new JSGFRuleSequence(new ArrayList<JSGFRule>());
JSGFRuleCount ruleCount = new JSGFRuleCount(newRule, JSGFRuleCount.ONCE_OR_MORE);
topRule = ruleCount;
} else {
newRule = new JSGFRuleSequence(new ArrayList<JSGFRule>());
topRule = newRule;
}