Searched refs:attributeGroups (Results 1 – 6 of 6) sorted by relevance
/system/tools/xsdc/src/com/android/xsdc/tag/ |
D | XsdComplexType.java | 26 final private List<XsdAttributeGroup> attributeGroups; field in XsdComplexType 31 List<XsdAttributeGroup> attributeGroups, in XsdComplexType() argument 37 this.attributeGroups = Collections.unmodifiableList( in XsdComplexType() 38 attributeGroups != null ? attributeGroups : new ArrayList<>()); in XsdComplexType() 53 return attributeGroups; in getAttributeGroups()
|
D | XsdAttributeGroup.java | 27 final private List<XsdAttributeGroup> attributeGroups; field in XsdAttributeGroup 31 List<XsdAttributeGroup> attributeGroups) throws XsdParserException { in XsdAttributeGroup() argument 37 this.attributeGroups = Collections.unmodifiableList(attributeGroups); in XsdAttributeGroup() 45 return attributeGroups; in getAttributeGroups()
|
D | XsdGeneralRestriction.java | 25 final private List<XsdAttributeGroup> attributeGroups; field in XsdGeneralRestriction 30 List<XsdAttributeGroup> attributeGroups, in XsdGeneralRestriction() argument 35 this.attributeGroups = Collections.unmodifiableList(attributeGroups); in XsdGeneralRestriction() 49 return attributeGroups; in getAttributeGroups()
|
D | XsdGeneralExtension.java | 25 final private List<XsdAttributeGroup> attributeGroups; field in XsdGeneralExtension 30 List<XsdAttributeGroup> attributeGroups, in XsdGeneralExtension() argument 35 this.attributeGroups = Collections.unmodifiableList(attributeGroups); in XsdGeneralExtension() 49 return attributeGroups; in getAttributeGroups()
|
D | XsdComplexContent.java | 24 List<XsdAttributeGroup> attributeGroups, List<XsdElement> elements, XsdGroup group) { in XsdComplexContent() argument 25 super(name, base, attributes, attributeGroups, elements, group); in XsdComplexContent()
|
/system/tools/xsdc/src/com/android/xsdc/ |
D | XsdHandler.java | 339 List<XsdAttributeGroup> attributeGroups = new ArrayList<>(); in makeAttributeGroup() local 346 attributeGroups.add((XsdAttributeGroup) tag); in makeAttributeGroup() 350 return setDeprecatedAndFinal(new XsdAttributeGroup(name, ref, attributes, attributeGroups), in makeAttributeGroup() 384 List<XsdAttributeGroup> attributeGroups = new ArrayList<>(); in makeComplexType() local 394 attributeGroups.add((XsdAttributeGroup) tag); in makeComplexType() 414 attributes, attributeGroups, elements, group), state.deprecated, state.finalValue, in makeComplexType() 479 List<XsdAttributeGroup> attributeGroups = new ArrayList<>(); in makeGeneralRestriction() local 487 attributeGroups.add((XsdAttributeGroup) tag); in makeGeneralRestriction() 495 return setDeprecatedAndFinal(new XsdGeneralRestriction(type, attributes, attributeGroups, in makeGeneralRestriction() 503 List<XsdAttributeGroup> attributeGroups = new ArrayList<>(); in makeGeneralExtension() local [all …]
|