Package wyfs.util

Examples of wyfs.util.DirectoryRoot


   * @param _args
   */
  public void build(List<File> files) throws Exception {
    if (decompile) {
      if (wycsDir instanceof DirectoryRoot) {
        DirectoryRoot wd = (DirectoryRoot) wycsDir;
        buildEntries(getMatchingFiles(files, wd, WycsFile.ContentType));
      } else {
        System.out
            .println("WARNING: decompiling without properly specified wycsdir");
      }
View Full Code Here


  @Override
  public void setWhileyDir(File dir) throws IOException {
    super.setWhileyDir(dir);
    if (cDir == null) {
      this.cDir = new DirectoryRoot(dir, cFileFilter,
          registry);
    }
  }
View Full Code Here

  @Override
  public void setWyilDir(File dir) throws IOException {
    super.setWyilDir(dir);
    if (cDir == null) {
      this.cDir = new DirectoryRoot(dir, cFileFilter, registry);
    }
  }
View Full Code Here

      this.cDir = new DirectoryRoot(dir, cFileFilter, registry);
    }
  }

  public void setCDir(File dir) throws IOException {
    this.cDir = new DirectoryRoot(dir, cFileFilter,
        registry);
  }
View Full Code Here

  public void setWhileyDir(File dir) throws IOException {
    // Note, we don't call super.setWhileyDir here as might be expected.
    // This is because that would set the wyilDir to a matching directory
    // root. However, for this builder, we don't want to write wyil files by
    // default.
    this.whileyDir = new DirectoryRoot(dir, whileyFileFilter, registry);
    if (classDir == null) {
      this.classDir = new DirectoryRoot(dir, classFileFilter,
          registry);
    }
  }
View Full Code Here

  @Override
  public void setWyilDir(File dir) throws IOException {
    super.setWyilDir(dir);
    if (classDir == null) {
      this.classDir = new DirectoryRoot(dir, classFileFilter,
          registry);
    }
  }
View Full Code Here

          registry);
    }
  }

  public void setClassDir(File classdir) throws IOException {
    this.classDir = new DirectoryRoot(classdir, classFileFilter,
        registry);
  }
View Full Code Here

TOP

Related Classes of wyfs.util.DirectoryRoot

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.