github.com/thommil/tge-mobile@v0.0.0-20190308225214-66a08abd51aa/bind/testdata/issue29559.java.golden (about) 1 // Java class issue29559.Issue29559 is a proxy for talking to a Go program. 2 // gobind -lang=java issue29559 3 // 4 // File is generated by gobind. Do not edit. 5 package issue29559; 6 7 import go.Seq; 8 9 public abstract class Issue29559 { 10 static { 11 Seq.touch(); // for loading the native library 12 _init(); 13 } 14 15 private Issue29559() {} // uninstantiable 16 17 // touch is called from other bound packages to initialize this package 18 public static void touch() {} 19 20 private static native void _init(); 21 22 23 24 public static native void takesAString(String s); 25 }