108109110111112113114115116117118
// if the current element is supported but is not a model element if (XMLElement.forName(reader.getLocalName()) != null) { continue; } ModelElement modelKey = ModelElement.forName(reader.getLocalName()); if (modelKey == null) { throw unexpectedElement(reader); }
406407408409410411412413414415416
if (reader.getLocalName().equals(parentElement.getName())) { continue; } ModelElement element = ModelElement.forName(reader.getLocalName()); if (element == null) { if (XMLElement.forName(reader.getLocalName()) != null) { continue; }
107108109110111112113114115116117
342343344345346347348349350351352
continue; } if (!tagName.equals(parentElement.getName())) { ModelElement element = ModelElement.forName(tagName); if (element != null) { parser.parse(reader, element, parentNode, addOperations); } else { if (XMLElement.forName(tagName) != null) {