Tagged Questions

6
votes
2answers
140 views

Java plugin framework choice

We're trying to determine how to implement a simple plugin framework for a service we are implementing that allows different types of calculators to be "plugged-in". After reading …
0
votes
2answers
49 views

Restrict Certain Java Code in a Plug-in

Hi, I am creating an application which uses the Java Plugin Framework to load plug-ins and intergrate them into the program. My question is: Is there anyway restrict certain oper …
8
votes
6answers
805 views

Best way to build a Plugin system with Java

How would you implement a Plugin-system for your Java application? Is it possible to have an easy to use (for the developer) system which achieves the following: Users put their …
0
votes
3answers
89 views

java: is there a framework that allows dynamically loading and unloading of jars (but not osgi)?

I want a mechanism that will allow to dynamically load and unload jars as well as calling an activator class in the jar. I don't want to use OSGi because of the cumbersome import/e …
4
votes
5answers
181 views

Best technology for adding plugin support to a J2SE application?

I'm writing a J2SE desktop application that requires one of its components to be pluggable. I've already defined the Java interface for this plugin. The user should be able to sele …
0
votes
1answer
104 views

How to make a Java PlugIn ?

I need to make my Java program as a PlugIn to OME - an Image processing web based s/w having Java API www.openmicroscopy
0
votes
1answer
154 views

A Java Plugin Framework that supports JARs

More specifically, is there any Java plugin frameworks have all of the below features: Support for multiple JAR files JARs can be signed and/or sealed Can perform a license check …
12
votes
8answers
678 views

How to create a pluginable Java program?

I want to create a Java program that can be extended with plugins. How can I do that and where should I look for? I have a set of interfaces that the plugin must implement, and it …
9
votes
4answers
1k views

Building a Plugin Architecture with Adobe AIR

I'm thinking of choosing Adobe AIR as the client-side implementation technology for an upcoming project. (The previous choice was C# and WPF, but I've been really impressed with Fl …
0
votes
2answers
115 views

Plugin Architecture with Interfaces; Interface check doesn’t work

I am implementing a simple plugin architecture in an application. The plugin requirements are defined using an interface (IPlugin) that is in a *.dll that is referenced by the app …