// Java class go.basictypes.Basictypes is a proxy for talking to a Go program. // gobind -lang=java basictypes // // File is generated by gobind. Do not edit. package go.basictypes; import go.Seq; public abstract class Basictypes { static { Seq.touch(); // for loading the native library init(); } private Basictypes() {} // uninstantiable private static native void init(); public static final boolean ABool = true; public static final double AFloat = 0.2015; public static final int ARune = 32; public static final String AString = "a string"; public static final long AnInt = 7L; public static final long AnInt2 = 9223372036854775807L; public static native boolean Bool(boolean p0); public static native byte[] ByteArrays(byte[] x); public static native void Error() throws Exception; public static native long ErrorPair() throws Exception; public static native void Ints(byte x, short y, int z, long t, long u); }