Lines Matching refs:maxOccurs
248 String maxOccurs = state.attributeMap.get("maxOccurs"); in makeElement() local
261 if (maxOccurs != null) { in makeElement()
262 if (maxOccurs.equals("0")) return null; in makeElement()
263 if (maxOccurs.equals("unbounded") || Integer.parseInt(maxOccurs) > 1) multiple = true; in makeElement()
480 String maxOccurs = state.attributeMap.get("maxOccurs"); in makeSequence() local
482 if (minOccurs != null || maxOccurs != null) { in makeSequence()
491 if (maxOccurs != null && (maxOccurs.equals("unbounded") in makeSequence()
492 || Integer.parseInt(maxOccurs) > 1)) { in makeSequence()
502 String maxOccurs = state.attributeMap.get("maxOccurs"); in makeChoice() local
508 if (maxOccurs != null && (maxOccurs.equals("unbounded") in makeChoice()
509 || Integer.parseInt(maxOccurs) > 1)) { in makeChoice()