github.com/c-darwin/mobile@v0.0.0-20160313183840-ff625c46f7c9/bind/testdata/try.java.golden (about)

     1  // Java Package 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 go.try_;
     6  
     7  import go.Seq;
     8  
     9  public abstract class Try {
    10      private Try() {} // uninstantiable
    11      
    12      public static String This() {
    13          go.Seq _in = new go.Seq();
    14          go.Seq _out = new go.Seq();
    15          String _result;
    16          Seq.send(DESCRIPTOR, CALL_This, _in, _out);
    17          _result = _out.readString();
    18          return _result;
    19      }
    20      
    21      private static final int CALL_This = 1;
    22      private static final String DESCRIPTOR = "try";
    23  }