Package org.auto.io.scanner

Examples of org.auto.io.scanner.ResourceHandler


  public static void testClassPathResourceScanner() {
    ClassPathResourceScanner scanner = new ClassPathResourceScanner();

    scanner.scan("org/apache/commons/logging/LogFactory.class",
        new ResourceHandler() {

          @Override
          public void handle(Resource t) {
            t.getInputStream();
            System.out.println(t.getDescription());
View Full Code Here

TOP

Related Classes of org.auto.io.scanner.ResourceHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.