I’d like to learn to write plugins. So far, all I’ve found to help is http://developer.servoy.com/docs/plugin-api. This document doesn’t seem to have any overview; rather it’s just a class reference doc.
Is there an overview doc somewhere that explains how to put a plugin together and how to install it? Are there any plugin source examples available?
I believe I might have to get down to the C/C++ level eventually. Can anyone offer any advice in this area? I assume that I’ll go thru Java first, and then to C. Other than blowing away cross-platformness, is Servoy going to have any fundamental problem with this idea?
Why would you do C/C++? What are you trying to make?
For sample code look in the plugins dir for example mail.jar does have the source for you to look at.
You will have to make youre own jnlp and sign youre code because if you do some native things you have to include a DLL in the jnlp code. (see a example jnlp file of the scheduler plugin)
If you just want to look at the code
then you can unzip the jars (jars are just zips) and look into the dir structure.
If you want to make youre own plugin or view the code a bit better then you could try ecliipse (www.eclipse.org).
Then make a java project in eclipse and in the project settings you can add those jars to the build/classpath. (then you also have to attach the 2 j2db* jars