709710711712713714715716717718719
}; if (includeParents) { //walk up the type hierarchy of the element to generate a list of // possible elements new TypeWalker().rwalk(type, visitor); } else { //just visit this type visitor.visit(type); }
895896897898899900901902903
return true; } }; new TypeWalker().walk(type, visitor); return found.isEmpty() ? null : (XSDTypeDefinition) found.get(0); }
12831284128512861287128812891290129112921293
}; if (includeParents) { //walk up the type hierarchy of the element to generate a list of // possible elements new TypeWalker().walk(type, visitor); } else { //just visit this type visitor.visit(type); }