mirror of https://github.com/kivy/pyjnius.git
11 lines
221 B
Python
11 lines
221 B
Python
|
from jnius import JavaClass, MetaJavaClass, JavaMethod
|
||
|
|
||
|
class HelloWorld(JavaClass):
|
||
|
__metaclass__ = MetaJavaClass
|
||
|
__javaclass__ = 'org/jnius/HelloWorld'
|
||
|
|
||
|
hello = JavaMethod('()V')
|
||
|
|
||
|
a = HelloWorld()
|
||
|
a.hello()
|