Skip to content

Instantly share code, notes, and snippets.

@573
Created October 23, 2012 13:59
Show Gist options
  • Save 573/3938898 to your computer and use it in GitHub Desktop.
Save 573/3938898 to your computer and use it in GitHub Desktop.
The HelloWizard.java file (JPF)
/** HelloWizard.java */
package simple.simphony.plugin;
import javax.swing.JOptionPane;
import repast.simphony.data.analysis.NetworkAnalysisPluginWizard;
public class HelloWizard extends NetworkAnalysisPluginWizard {
public HelloWizard() {
super(null);
JOptionPane.showMessageDialog(null, "HelloWizard initialized");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment