Package wyjc.runtime

Examples of wyjc.runtime.WyObject


import wyjc.runtime.WyRecord;

public class File$native {
  public static WyObject NativeFileReader(String filename) {
    try {
      return new WyObject(new FileInputStream(filename));
    } catch(FileNotFoundException e) {
      // ARGH
    }
    return null;
  }
View Full Code Here


    return null;
  }

  public static WyObject NativeFileWriter(String filename) {
    try {
      return new WyObject(new FileOutputStream(filename));
    } catch(FileNotFoundException e) {
      // ARGH
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of wyjc.runtime.WyObject

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.