Files
gomobile-java/bind/testdata/customprefix.java.golden
Hyang-Ah Hana Kim 24a199a648 bind: update testdata to reflect changes from cl/17866
Change-Id: Icdc68c536b8bc9c5e3874731e33b5f90e123a052
Reviewed-on: https://go-review.googlesource.com/18618
Reviewed-by: David Crawshaw <crawshaw@golang.org>
2016-01-13 21:19:59 +00:00

21 lines
560 B
Plaintext

// Java class com.example.Customprefix is a proxy for talking to a Go program.
// gobind -lang=java -javapkg=com.example customprefix
//
// File is generated by gobind. Do not edit.
package com.example;
import go.Seq;
public abstract class Customprefix {
private Customprefix() {} // uninstantiable
public static void F() {
go.Seq _in = null;
go.Seq _out = null;
Seq.send(DESCRIPTOR, CALL_F, _in, _out);
}
private static final int CALL_F = 1;
private static final String DESCRIPTOR = "customprefix";
}