Example #1
0
 @Override
 public void startSAX() throws XMLStoreException, SAXException {
   if (onlyInMemory) throw new SAXException("not supported");
   else super.startSAX();
 }
Example #2
0
 @Override
 public void reset() throws XMLStoreException {
   if (!onlyInMemory) super.reset();
 }
Example #3
0
 @Override
 public void setContentHandler(ContentHandler h) {
   if (!onlyInMemory) super.setContentHandler(h);
 }