customprefix.java.golden 656 B

1234567891011121314151617181920212223242526
  1. // Code generated by gobind. DO NOT EDIT.
  2. // Java class com.example.customprefix.Customprefix is a proxy for talking to a Go program.
  3. //
  4. // autogenerated by gobind -lang=java -javapkg=com.example customprefix
  5. package com.example.customprefix;
  6. import go.Seq;
  7. public abstract class Customprefix {
  8. static {
  9. Seq.touch(); // for loading the native library
  10. _init();
  11. }
  12. private Customprefix() {} // 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 void f();
  17. }