1 package com.thaiopensource.validate.nrl; 2 3 import com.thaiopensource.validate.Schema; 4 import com.thaiopensource.validate.nrl.ModeUsage; 5 import org.xml.sax.SAXException ; 6 import org.xml.sax.ContentHandler ; 7 8 interface SectionState { 9 14 void addChildMode(ModeUsage modeUsage, ContentHandler handler); 15 void addValidator(Schema schema, ModeUsage modeUsage); 16 20 void addActiveHandler(ContentHandler handler, ModeUsage attributeModeUsage); 21 void addAttributeValidationModeUsage(ModeUsage modeUsage); 22 void reject() throws SAXException ; 23 } 24 | Popular Tags |