Package br.net.woodstock.rockframework.core.util

Examples of br.net.woodstock.rockframework.core.util.ZipReader


  private void addClassFromZip(final URL url) throws IOException, URISyntaxException {
    URI uri = Resources.getURI(url);
    File file = new File(uri);
    InputStream inputStream = new FileInputStream(file);
    ZipReader reader = new ZipReader(inputStream);
    Collection<String> files = reader.getFiles();
    if (files != null) {
      for (String s : files) {
        if (this.isValidClass(s)) {
          Class clazz = this.getClassFromFile(s);
          if ((clazz != null) && (this.isAcceptable(clazz))) {
View Full Code Here

TOP

Related Classes of br.net.woodstock.rockframework.core.util.ZipReader

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.