--- old/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/parsers/XML11Configuration.java 2015-09-30 14:27:41.976502153 -0700 +++ new/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/parsers/XML11Configuration.java 2015-09-30 14:27:41.868496781 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved. */ /* * Licensed to the Apache Software Foundation (ASF) under one or more @@ -894,6 +894,20 @@ } // parse(boolean):boolean + /** + * Stops the parsing process. + */ + public boolean stop() { + return fCurrentScanner.stop(); + } + + /** + * Resumes parsing after it was stopped by calling the stop method. + */ + public boolean resume() { + return fCurrentScanner.resume(); + } + /** * Returns the state of a feature. *