xmlschema-core/src/main/java/org/apache/ws/commons/schema/XmlSchemaComplexContentExtension.java [53:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        attributes = Collections.synchronizedList(new ArrayList<XmlSchemaAttributeOrGroupRef>());
    }

    public void setAnyAttribute(XmlSchemaAnyAttribute anyAttribute) {
        this.anyAttribute = anyAttribute;
    }

    public XmlSchemaAnyAttribute getAnyAttribute() {
        return this.anyAttribute;
    }

    public List<XmlSchemaAttributeOrGroupRef> getAttributes() {
        return this.attributes;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



xmlschema-core/src/main/java/org/apache/ws/commons/schema/XmlSchemaSimpleContentRestriction.java [58:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        attributes = Collections.synchronizedList(new ArrayList<XmlSchemaAttributeOrGroupRef>());
    }

    /* Allows an XmlSchemaAnyAttribute to be used for the attribute value. */

    public void setAnyAttribute(XmlSchemaAnyAttribute anyAttribute) {
        this.anyAttribute = anyAttribute;
    }

    public XmlSchemaAnyAttribute getAnyAttribute() {
        return this.anyAttribute;
    }

    public List<XmlSchemaAttributeOrGroupRef> getAttributes() {
        return this.attributes;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



