131132133134135136137
throws SAXException { Resource[] contexts = createContexts(0); parsedValues.clear(); return new ClearOperation(contexts); }
503504505506507508509
verifyNotReadOnly(); if (repository.isReadOnly()) { throw new RepositoryReadOnlyException(); } add(new ClearOperation(contexts)); }
128129130131132133134
244245246247248249250251
@Override public void clear(Resource... contexts) throws RepositoryException { txn.add(new ClearOperation(contexts)); autoCommit(); }