blob: 940e67c67c99fc8a9f2395493fd0aaa4544b0b99 [file] [log] [blame]
// Java class go.try_.Try is a proxy for talking to a Go program.
// gobind -lang=java try
//
// File is generated by gobind. Do not edit.
package go.try_;
import go.Seq;
public abstract class Try {
static {
Seq.touch(); // for loading the native library
init();
}
private Try() {} // uninstantiable
// touch is called from other bound packages to initialize this package
public static void touch() {}
private static native void init();
public static native String This();
}