863864865866867868869870871872873
this.currNode.add(newNode); this.currNode = newNode; if (type.isLocal()) { if (type.isLocal()) { type.visit(this); } } this.currNode = (SchemaTreeNode) this.currNode.getParent(); }
377378379380381382383384385386387
&& type.getTargetNamespace().equals(baseType.getTargetNamespace()) && type.getName().equals(baseType.getName())) { indent++; println("<redefine>"); indent++; baseType.visit(this); indent--; println("</redefine>"); indent--; }
423424425426427428429430431432433
486487488489490491492493494495496
type.isLocal()?"":"/")); if(type.isLocal()) { indent++; if(type.isLocal()) type.visit(this); indent--; println("</element>"); } }