throws SAXException {
// memorize AnyOtherElementExps to the map
for( int i=0; i<exps.length; i++ )
rule2exp.put( exps[i], exps[i] );
IslandVerifier iv = new AnyOtherElementVerifier(exps);
dispatcher.switchVerifier(iv);
// remember tag names (these will be used in endChildIsland method)
lastNamaespaceUri = namespaceUri;
lastLocalName = localName;
lastQName = qName;
// simulate this startElement event
iv.startElement( namespaceUri, localName, qName, atts );
}