mirror of https://github.com/kivy/pyjnius.git
13 lines
206 B
Java
13 lines
206 B
Java
|
package org.jnius;
|
||
|
|
||
|
|
||
|
public class ObjectArgument {
|
||
|
public static int checkObject(Object obj) {
|
||
|
if (obj == null) {
|
||
|
return -1;
|
||
|
} else {
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
|
}
|