Re: [JPP-Devel] Jump-pilot-devel Digest, Vol 11, Issue 6

2007-04-05 Thread Navin Math
i need some programs that shows the interactions between JUMP and JAVA please help me out. ex: how to display a image file of JUMP in HTML page through JAVA. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceF

[JPP-Devel] Fwd: Pluggable Renderers For OpenJUMP - Alpha Release

2007-04-05 Thread Sunburned Surveyor
I forgot to send the links to the docs and code. http://www.redefinedhorizons.com/shared_files/Class_and_Interface_Descriptions.pdf http://www.redefinedhorizons.com/shared_files/javadoc.zip http://www.redefinedhorizons.com/shared_files/source.zip SS -- Forwarded message -- From:

[JPP-Devel] Pluggable Renderers For OpenJUMP - Alpha Release

2007-04-05 Thread Sunburned Surveyor
I think I've finally found a hack that will allow pluggable renderers in OpenJUMP. I've got the source code and some initial developer documentation completed. In short a plug-in developer will need to do the following tasks to add custom rendering behavior to OpenJUMP without the need for compil

Re: [JPP-Devel] Help with a Java problem...

2007-04-05 Thread Sunburned Surveyor
Edgar and Jon. I have decided to just use a text file containing the name of each class that I need to load and the create and object from. Although this requires a little more effort to install the plug-in, it is a whole lot easier to program. I'll probably write a little helper class that appe

Re: [JPP-Devel] Help with a Java problem...

2007-04-05 Thread Edgar Soldin
Hello Sunburned, also to minimize the jars searched on you might instantiate a new Classloader (e.g. java.net.URLClassLoader) containing only a few selected jars e.g. in some folder or so. I found examples using a classloader with some other api classes to find classes by interface or implemen

Re: [JPP-Devel] Help with a Java problem...

2007-04-05 Thread Sunburned Surveyor
Jon, That makes a lot of sense. Thanks for your explanation. Landon On 4/4/07, Jonathan Aquino <[EMAIL PROTECTED]> wrote: If I remember correctly, for JUMP it was quite slow to determine this programatically (I think you have to instantiate every class in the jar). So instead we search base