2017-01-01 22:43:46 +01:00
|
|
|
// Java class java.F is a proxy for talking to a Go program.
|
2016-09-07 18:27:36 +02:00
|
|
|
// gobind -lang=java java
|
|
|
|
//
|
|
|
|
// File is generated by gobind. Do not edit.
|
2017-01-01 22:43:46 +01:00
|
|
|
package java;
|
2016-09-07 18:27:36 +02:00
|
|
|
|
|
|
|
import go.Seq;
|
|
|
|
|
2017-01-16 20:10:54 +01:00
|
|
|
public interface F extends R {
|
|
|
|
public String toString();
|
2016-09-07 18:27:36 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-17 13:05:26 +01:00
|
|
|
// Java class java.L is a proxy for talking to a Go program.
|
|
|
|
// gobind -lang=java java
|
|
|
|
//
|
|
|
|
// File is generated by gobind. Do not edit.
|
|
|
|
package java;
|
|
|
|
|
|
|
|
import go.Seq;
|
|
|
|
|
|
|
|
public interface L extends R {
|
|
|
|
public String toString();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-01 22:43:46 +01:00
|
|
|
// Java class java.O is a proxy for talking to a Go program.
|
2016-09-07 18:27:36 +02:00
|
|
|
// gobind -lang=java java
|
|
|
|
//
|
|
|
|
// File is generated by gobind. Do not edit.
|
2017-01-01 22:43:46 +01:00
|
|
|
package java;
|
2016-09-07 18:27:36 +02:00
|
|
|
|
|
|
|
import go.Seq;
|
|
|
|
|
2017-01-16 20:10:54 +01:00
|
|
|
public interface O extends R {
|
|
|
|
public String toString();
|
2016-09-07 18:27:36 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-01 22:43:46 +01:00
|
|
|
// Java class java.R is a proxy for talking to a Go program.
|
2016-09-07 18:27:36 +02:00
|
|
|
// gobind -lang=java java
|
|
|
|
//
|
|
|
|
// File is generated by gobind. Do not edit.
|
2017-01-01 22:43:46 +01:00
|
|
|
package java;
|
2016-09-07 18:27:36 +02:00
|
|
|
|
|
|
|
import go.Seq;
|
|
|
|
|
|
|
|
public interface R {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-01 22:43:46 +01:00
|
|
|
// Java class java.S is a proxy for talking to a Go program.
|
2016-09-07 18:27:36 +02:00
|
|
|
// gobind -lang=java java
|
|
|
|
//
|
|
|
|
// File is generated by gobind. Do not edit.
|
2017-01-01 22:43:46 +01:00
|
|
|
package java;
|
2016-09-07 18:27:36 +02:00
|
|
|
|
|
|
|
import go.Seq;
|
|
|
|
|
2017-01-16 20:10:54 +01:00
|
|
|
public interface S extends R {
|
|
|
|
public String toString();
|
2016-09-07 18:27:36 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-01 22:43:46 +01:00
|
|
|
// Java class java.Java is a proxy for talking to a Go program.
|
2016-09-07 18:27:36 +02:00
|
|
|
// gobind -lang=java java
|
|
|
|
//
|
|
|
|
// File is generated by gobind. Do not edit.
|
2017-01-01 22:43:46 +01:00
|
|
|
package java;
|
2016-09-07 18:27:36 +02:00
|
|
|
|
|
|
|
import go.Seq;
|
|
|
|
|
|
|
|
public abstract class Java {
|
|
|
|
static {
|
|
|
|
Seq.touch(); // for loading the native library
|
|
|
|
_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
private Java() {} // uninstantiable
|
|
|
|
|
|
|
|
// touch is called from other bound packages to initialize this package
|
|
|
|
public static void touch() {}
|
|
|
|
|
|
|
|
private static native void _init();
|
|
|
|
|
2016-09-19 12:44:13 +02:00
|
|
|
private static final class proxyF implements Seq.Proxy, F {
|
2018-04-13 18:43:35 +02:00
|
|
|
private final int refnum;
|
2016-09-19 12:44:13 +02:00
|
|
|
|
|
|
|
@Override public final int incRefnum() {
|
|
|
|
Seq.incGoRef(refnum);
|
|
|
|
return refnum;
|
|
|
|
}
|
|
|
|
|
2018-04-13 18:43:35 +02:00
|
|
|
proxyF(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
|
2016-09-19 12:44:13 +02:00
|
|
|
|
2017-01-16 20:10:54 +01:00
|
|
|
public native String toString();
|
2016-09-07 18:27:36 +02:00
|
|
|
}
|
2017-01-17 13:05:26 +01:00
|
|
|
private static final class proxyL implements Seq.Proxy, L {
|
2018-04-13 18:43:35 +02:00
|
|
|
private final int refnum;
|
2017-01-17 13:05:26 +01:00
|
|
|
|
|
|
|
@Override public final int incRefnum() {
|
|
|
|
Seq.incGoRef(refnum);
|
|
|
|
return refnum;
|
|
|
|
}
|
|
|
|
|
2018-04-13 18:43:35 +02:00
|
|
|
proxyL(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
|
2017-01-17 13:05:26 +01:00
|
|
|
|
|
|
|
public native String toString();
|
|
|
|
}
|
2016-09-19 12:44:13 +02:00
|
|
|
private static final class proxyO implements Seq.Proxy, O {
|
2018-04-13 18:43:35 +02:00
|
|
|
private final int refnum;
|
2016-09-19 12:44:13 +02:00
|
|
|
|
|
|
|
@Override public final int incRefnum() {
|
|
|
|
Seq.incGoRef(refnum);
|
|
|
|
return refnum;
|
|
|
|
}
|
|
|
|
|
2018-04-13 18:43:35 +02:00
|
|
|
proxyO(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
|
2016-09-19 12:44:13 +02:00
|
|
|
|
2017-01-16 20:10:54 +01:00
|
|
|
public native String toString();
|
2016-09-07 18:27:36 +02:00
|
|
|
}
|
2016-09-19 12:44:13 +02:00
|
|
|
private static final class proxyR implements Seq.Proxy, R {
|
2018-04-13 18:43:35 +02:00
|
|
|
private final int refnum;
|
2016-09-19 12:44:13 +02:00
|
|
|
|
|
|
|
@Override public final int incRefnum() {
|
|
|
|
Seq.incGoRef(refnum);
|
|
|
|
return refnum;
|
|
|
|
}
|
|
|
|
|
2018-04-13 18:43:35 +02:00
|
|
|
proxyR(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
|
2016-09-19 12:44:13 +02:00
|
|
|
|
2016-09-07 18:27:36 +02:00
|
|
|
}
|
2016-09-19 12:44:13 +02:00
|
|
|
private static final class proxyS implements Seq.Proxy, S {
|
2018-04-13 18:43:35 +02:00
|
|
|
private final int refnum;
|
2016-09-19 12:44:13 +02:00
|
|
|
|
|
|
|
@Override public final int incRefnum() {
|
|
|
|
Seq.incGoRef(refnum);
|
|
|
|
return refnum;
|
|
|
|
}
|
|
|
|
|
2018-04-13 18:43:35 +02:00
|
|
|
proxyS(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
|
2016-09-19 12:44:13 +02:00
|
|
|
|
2017-01-16 20:10:54 +01:00
|
|
|
public native String toString();
|
2016-09-07 18:27:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|