I have sikuli file which defined some classes in it. What I want to do is to use these classes in my own java program.
Any ideas on how to implement this?
I have sikuli file which defined some classes in it. What I want to do is to use these classes in my own java program.
Any ideas on how to implement this?
Look at the files in a working Sikuli directory ie HelloWorld.sikuli. Sikuli scripts are written in jython, not java. A technicality, but it is important to understand that your Sikuli file is a .py not a .java. The directory will also contain a .class file which is the compiled Jython machine code. The reference here shows how to use jython in java.