1 7 package org.apache.xerces.impl.xs; 8 9 import org.apache.xerces.xni.Augmentations; 10 import org.apache.xerces.xni.QName; 11 import org.apache.xerces.xni.XMLAttributes; 12 import org.apache.xerces.xs.XSElementDeclaration; 13 14 20 public class JBossXBSchemaValidator 21 extends XMLSchemaValidator 22 { 23 Augmentations handleStartElement(QName element, XMLAttributes attributes, Augmentations augs) 24 { 25 Augmentations modifiedAugs = super.handleStartElement(element, attributes, augs); 26 if(modifiedAugs != null) 27 { 28 modifiedAugs.putItem("jbossxb.validator", this); 29 } 30 return modifiedAugs; 31 } 32 33 public XSElementDeclaration getCurrentElementDelcaration() 34 { 35 return this.fCurrentElemDecl; 36 } 37 } 38 | Popular Tags |