2019-10-01 18:24:44 -04:00
|
|
|
// Code generated by gobind. DO NOT EDIT.
|
|
|
|
|
2017-01-01 22:43:46 +01:00
|
|
|
// Java class ignore.S is a proxy for talking to a Go program.
|
2016-08-20 21:10:46 +02:00
|
|
|
//
|
2019-10-01 18:24:44 -04:00
|
|
|
// autogenerated by gobind -lang=java ignore
|
2017-01-01 22:43:46 +01:00
|
|
|
package ignore;
|
2016-08-20 21:10:46 +02:00
|
|
|
|
|
|
|
import go.Seq;
|
|
|
|
|
2016-09-19 12:44:13 +02:00
|
|
|
public final class S implements Seq.Proxy, I {
|
2016-09-29 14:19:38 +03:00
|
|
|
static { Ignore.touch(); }
|
2016-09-16 19:19:01 +02:00
|
|
|
|
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() {
|
2018-04-14 12:55:03 +02:00
|
|
|
Seq.incGoRef(refnum, this);
|
2016-09-19 12:44:13 +02:00
|
|
|
return refnum;
|
|
|
|
}
|
|
|
|
|
2018-04-13 18:43:35 +02:00
|
|
|
S(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
|
2016-08-20 21:10:46 +02:00
|
|
|
|
2018-04-13 18:43:35 +02:00
|
|
|
public S() { this.refnum = __New(); Seq.trackGoRef(refnum, this); }
|
2016-09-23 12:31:57 +02:00
|
|
|
|
2018-04-13 17:56:28 +02:00
|
|
|
private static native int __New();
|
2016-09-23 12:31:57 +02:00
|
|
|
|
2018-04-08 12:49:39 +02:00
|
|
|
// skipped field S.F with unsupported type: interface{}
|
2016-08-20 21:10:46 +02:00
|
|
|
|
|
|
|
// skipped method S.Argument with unsupported parameter or return types
|
|
|
|
|
|
|
|
// skipped method S.Result with unsupported parameter or return types
|
|
|
|
|
|
|
|
@Override public boolean equals(Object o) {
|
|
|
|
if (o == null || !(o instanceof S)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
S that = (S)o;
|
2018-04-08 12:49:39 +02:00
|
|
|
// skipped field S.F with unsupported type: interface{}
|
2016-08-20 21:10:46 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override public int hashCode() {
|
|
|
|
return java.util.Arrays.hashCode(new Object[] {});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override public String toString() {
|
|
|
|
StringBuilder b = new StringBuilder();
|
|
|
|
b.append("S").append("{");
|
|
|
|
return b.append("}").toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-01 18:24:44 -04:00
|
|
|
// Code generated by gobind. DO NOT EDIT.
|
|
|
|
|
2017-01-01 22:43:46 +01:00
|
|
|
// Java class ignore.I is a proxy for talking to a Go program.
|
2016-08-20 21:10:46 +02:00
|
|
|
//
|
2019-10-01 18:24:44 -04:00
|
|
|
// autogenerated by gobind -lang=java ignore
|
2017-01-01 22:43:46 +01:00
|
|
|
package ignore;
|
2016-08-20 21:10:46 +02:00
|
|
|
|
|
|
|
import go.Seq;
|
|
|
|
|
|
|
|
public interface I {
|
|
|
|
// skipped method I.Argument with unsupported parameter or return types
|
|
|
|
|
|
|
|
// skipped method I.Result with unsupported parameter or return types
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-10-01 18:24:44 -04:00
|
|
|
// Code generated by gobind. DO NOT EDIT.
|
|
|
|
|
2017-01-01 22:43:46 +01:00
|
|
|
// Java class ignore.Ignore is a proxy for talking to a Go program.
|
2016-03-13 15:15:56 +01:00
|
|
|
//
|
2019-10-01 18:24:44 -04:00
|
|
|
// autogenerated by gobind -lang=java ignore
|
2017-01-01 22:43:46 +01:00
|
|
|
package ignore;
|
2016-03-13 15:15:56 +01:00
|
|
|
|
|
|
|
import go.Seq;
|
|
|
|
|
|
|
|
public abstract class Ignore {
|
|
|
|
static {
|
|
|
|
Seq.touch(); // for loading the native library
|
2016-09-04 23:37:26 +03:00
|
|
|
_init();
|
2016-03-13 15:15:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private Ignore() {} // uninstantiable
|
|
|
|
|
|
|
|
// touch is called from other bound packages to initialize this package
|
|
|
|
public static void touch() {}
|
|
|
|
|
2016-09-04 23:37:26 +03:00
|
|
|
private static native void _init();
|
2016-03-13 15:15:56 +01:00
|
|
|
|
2016-09-19 12:44:13 +02:00
|
|
|
private static final class proxyI implements Seq.Proxy, I {
|
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() {
|
2018-04-14 12:55:03 +02:00
|
|
|
Seq.incGoRef(refnum, this);
|
2016-09-19 12:44:13 +02:00
|
|
|
return refnum;
|
|
|
|
}
|
|
|
|
|
2018-04-13 18:43:35 +02:00
|
|
|
proxyI(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
|
2016-09-19 12:44:13 +02:00
|
|
|
|
2016-03-31 10:23:14 +02:00
|
|
|
// skipped method I.Argument with unsupported parameter or return types
|
2016-03-13 15:15:56 +01:00
|
|
|
|
2016-03-31 10:23:14 +02:00
|
|
|
// skipped method I.Result with unsupported parameter or return types
|
2016-03-13 15:15:56 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-04-08 12:49:39 +02:00
|
|
|
// skipped const Cuint with unsupported type: uint
|
2016-03-13 15:15:56 +01:00
|
|
|
|
2018-04-08 12:49:39 +02:00
|
|
|
// skipped const Cuint32 with unsupported type: uint32
|
2016-03-13 15:15:56 +01:00
|
|
|
|
2018-04-08 12:49:39 +02:00
|
|
|
// skipped const Cuint64 with unsupported type: uint64
|
2016-03-13 15:15:56 +01:00
|
|
|
|
2018-04-08 12:49:39 +02:00
|
|
|
// skipped const NamedConst with unsupported type: ignore.NamedString
|
|
|
|
|
|
|
|
|
|
|
|
// skipped variable C128 with unsupported type: complex128
|
|
|
|
|
|
|
|
// skipped variable C64 with unsupported type: complex64
|
|
|
|
|
|
|
|
// skipped variable Uint with unsupported type: uint
|
|
|
|
|
|
|
|
// skipped variable Uint32 with unsupported type: uint32
|
|
|
|
|
|
|
|
// skipped variable Uint64 with unsupported type: uint64
|
|
|
|
|
|
|
|
// skipped variable V with unsupported type: interface{}
|
|
|
|
|
|
|
|
// skipped variable Var with unsupported type: interface{}
|
2016-03-13 15:15:56 +01:00
|
|
|
|
|
|
|
// skipped function Argument with unsupported parameter or return types
|
|
|
|
|
|
|
|
// skipped function Result with unsupported parameter or return types
|
|
|
|
|
|
|
|
}
|