Package com.google.classpath

Examples of com.google.classpath.DirectoryClassPath$DirectoryFilter


    assertSame(classInfo, method.getClassInfo());
    assertNotSame(interfaceClassInfo, method.getClassInfo());
  }

  public void testReadInvalidByteCodeClassFile() throws Exception {
    ClassRepository repo = new JavaClassRepository(new DirectoryClassPath(new File("classes-for-test")));
    try {
      repo.getClass("invalidByteCode");
      fail();
    } catch (ClassNotFoundException e) {
    }
View Full Code Here

TOP

Related Classes of com.google.classpath.DirectoryClassPath$DirectoryFilter

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.