github.com/acrespo/mobile@v0.0.0-20190107162257-dc0771356504/bind/testdata/try.java.golden (about)

     1  // Java class try_.Try is a proxy for talking to a Go program.
     2  //   gobind -lang=java try
     3  //
     4  // File is generated by gobind. Do not edit.
     5  package try_;
     6  
     7  import go.Seq;
     8  
     9  public abstract class Try {
    10      static {
    11          Seq.touch(); // for loading the native library
    12          _init();
    13      }
    14      
    15      private Try() {} // 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 String this_();
    25  }