JVM Languages
jplugin.txt
Associated article: Plug-Ins & Java
Tags: Database JVM Languages
Published source code accompanying the article by Michael Pilone in which he uses design patterns and concepts in the development of a Java plug-in framework. Also see JPLUGIN.ZIP.
Plug-Ins & Java
by Michael Pilone
Listing One
package org.ddj.framework;
/* The plugin interface will be implemented by all plugins and
* server as the common interface between a plugin and the application. */
public interface Plugin
{
/** Start method is called ...


