try.java.golden 565 B

1234567891011121314151617181920212223242526
  1. // Code generated by gobind. DO NOT EDIT.
  2. // Java class try_.Try is a proxy for talking to a Go program.
  3. //
  4. // autogenerated by gobind -lang=java try
  5. package try_;
  6. import go.Seq;
  7. public abstract class Try {
  8. static {
  9. Seq.touch(); // for loading the native library
  10. _init();
  11. }
  12. private Try() {} // uninstantiable
  13. // touch is called from other bound packages to initialize this package
  14. public static void touch() {}
  15. private static native void _init();
  16. public static native String this_();
  17. }