Package net.sf.lapg.common

Examples of net.sf.lapg.common.FileCreator


  @Override
  public void createFile(String name, String contents, INotifier notifier) {
    try {
      // FIXME encoding, newline
      new FileCreator(name, contents, "utf8", true).create();
    } catch (IOException e) {
      notifier.error("cannot create file `" + name + "': " + e.getMessage() + "\n");
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.lapg.common.FileCreator

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.