Skip to content

Commit 5ac2e33

Browse files
committed
Also implement Cloneable so dotnet/android can test it.
1 parent 27236f2 commit 5ac2e33

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
package net.dot.jni.test;
22

33
public class MyJavaInterfaceImpl
4-
implements JavaInterface
4+
implements JavaInterface, Cloneable
55
{
66
public String getValue() {
77
return "Hello from Java!";
88
}
9+
10+
public Object clone() {
11+
return this;
12+
}
913
}

0 commit comments

Comments
 (0)