The following document contains the results of PMD's CPD 4.2.5.
File | Line |
---|---|
com\legstar\xsd\cob\AbstractXsd2CobGenerator.java | 30 |
com\legstar\xsd\cob\Xsd2CobMapper.java | 195 |
protected Element getCobolAnnotation(XmlSchemaElement xsdElement) { XmlSchemaAnnotation annotation = xsdElement.getAnnotation(); if (annotation != null && annotation.getItems().getCount() > 0) { XmlSchemaAppInfo appinfo = (XmlSchemaAppInfo) annotation.getItems() .getItem(0); if (appinfo.getMarkup() != null) { for (int i = 0; i < appinfo.getMarkup().getLength(); i++) { Node node = appinfo.getMarkup().item(i); if (node instanceof Element && node.getLocalName().equals(CobolMarkup.ELEMENT) && node.getNamespaceURI().equals(CobolMarkup.NS)) { |