public interface ScannerListener
Scanner.boolean onAccept(java.lang.String name)
This method will be invoked by a Scanner to ascertain if the
listener accepts the resource for processing. If acceptable then
the Scanner will then invoke the
onProcess(java.lang.String, java.io.InputStream) method.
name - the resource name.void onProcess(java.lang.String name,
java.io.InputStream in)
throws java.io.IOException
This method will be invoked after the listener has accepted the resource.
name - the resource name.in - the input stream of the resourcejava.io.IOException - if an error occurs when processing the resource.Copyright © 2016 Oracle Corporation. All Rights Reserved.