taverna-wsdl-generic/src/main/java/org/apache/taverna/wsdl/parser/TypeDescriptors.java [462:475]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (attribute instanceof XmlSchemaAttribute) {
            XmlSchemaAttribute xmlSchemaAttribute = (XmlSchemaAttribute)attribute;

            QName attrName;
            if (xmlSchemaAttribute.isRef()) {
                XmlSchemaRef<XmlSchemaAttribute> xmlSchemaRef = xmlSchemaAttribute.getRef();

                attrName = xmlSchemaRef.getTargetQName();
                if (attrName == null) {
                    XmlSchemaAttribute xmlSchemaRefAttribute = xmlSchemaRef.getTarget();
                    attrName = xmlSchemaRefAttribute.getWireName();
                }
            } else {
                attrName = xmlSchemaAttribute.getWireName();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



taverna-wsdl-generic/src/main/java/org/apache/taverna/wsdl/parser/TypeDescriptors.java [536:548]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (attribute instanceof XmlSchemaAttribute) {
            XmlSchemaAttribute xmlSchemaAttribute = (XmlSchemaAttribute)attribute;
            QName attrName;
            if (xmlSchemaAttribute.isRef()) {
                XmlSchemaRef<XmlSchemaAttribute> xmlSchemaRef = xmlSchemaAttribute.getRef();

                attrName = xmlSchemaRef.getTargetQName();
                if (attrName == null) {
                    XmlSchemaAttribute xmlSchemaRefAttribute = xmlSchemaRef.getTarget();
                    attrName = xmlSchemaRefAttribute.getWireName();
                }
            } else {
                    attrName = xmlSchemaAttribute.getWireName();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



