libjpmul-Configurator is a minimal graphical user interface to alter configuration parameters of libjpmul at runtime. It is easily integrated with any application using libjpmul.
Click here to download the source archive
Click here to download the packaged library
Include the source or .jar in your project path. Build the project to see that everything is still working. libjpmul-Configurator includes two classes, ConfigurationModel and ConfigPanel. ConfigPanel extends JScrollPane, so to integrate it we simple add it to a JFrame, then register ConfigurationModel with it.
JFrame frame = new JFrame("libjpmul-Configurator");
ConfigPanel panel = new ConfigPanel();
ConfigurationModel model = new ConfigurationModel();
model.addPropertyChangeListener(panel);
frame.add(panel);
frame.pack();
frame.setVisible(true);
libjpmul-Configurator is available under the modified 3-clause BSD license. See the LICENSE file for more information.