Searched refs:attributeGroups (Results 1 – 6 of 6) sorted by relevance
/aosp12/system/tools/xsdc/src/com/android/xsdc/tag/ |
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
/aosp12/system/tools/xsdc/src/com/android/xsdc/ |
H A D | XsdHandler.java | 344 List<XsdAttributeGroup> attributeGroups = new ArrayList<>(); in makeAttributeGroup() local 351 attributeGroups.add((XsdAttributeGroup) tag); in makeAttributeGroup() 389 List<XsdAttributeGroup> attributeGroups = new ArrayList<>(); in makeComplexType() local 399 attributeGroups.add((XsdAttributeGroup) tag); in makeComplexType() 419 attributes, attributeGroups, elements, group), state.deprecated, state.finalValue, in makeComplexType() 484 List<XsdAttributeGroup> attributeGroups = new ArrayList<>(); in makeGeneralRestriction() local 492 attributeGroups.add((XsdAttributeGroup) tag); in makeGeneralRestriction() 500 return setDeprecatedAndFinal(new XsdGeneralRestriction(type, attributes, attributeGroups, in makeGeneralRestriction() 508 List<XsdAttributeGroup> attributeGroups = new ArrayList<>(); in makeGeneralExtension() local 516 attributeGroups.add((XsdAttributeGroup) tag); in makeGeneralExtension() [all …]
|