Package wyfs.util

Examples of wyfs.util.DirectoryRoot$Entry


      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$Entry

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.