mirror of
https://github.com/go-i2p/gomobile-java.git
synced 2025-07-13 11:54:44 -04:00

Change-Id: Icdc68c536b8bc9c5e3874731e33b5f90e123a052 Reviewed-on: https://go-review.googlesource.com/18618 Reviewed-by: David Crawshaw <crawshaw@golang.org>
25 lines
611 B
Plaintext
25 lines
611 B
Plaintext
// Java class go.try_.Try is a proxy for talking to a Go program.
|
|
// gobind -lang=java try
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
package go.try_;
|
|
|
|
import go.Seq;
|
|
|
|
public abstract class Try {
|
|
private Try() {} // uninstantiable
|
|
|
|
public static String This() {
|
|
go.Seq _in = null;
|
|
go.Seq _out = null;
|
|
_out = new go.Seq();
|
|
String _result;
|
|
Seq.send(DESCRIPTOR, CALL_This, _in, _out);
|
|
_result = _out.readString();
|
|
return _result;
|
|
}
|
|
|
|
private static final int CALL_This = 1;
|
|
private static final String DESCRIPTOR = "try";
|
|
}
|