How can I to add actions to the Java package node?
Note: These pages are being reviewed.
Register to Projects/package/Actions
Example:
@ActionID(
category = "Build",
id = "com.foo.bar.OnJavaPackageAction")
@ActionRegistration(
displayName = "#CTL_OnJavaPackageAction")
@ActionReferences({
@ActionReference(path = "Projects/package/Actions", position = 0)
})
@Messages("CTL_OnJavaPackageAction=OnJavaPackageAction")
public final class OnJavaPackageAction implements ActionListener {
private final DataFolder context;
public OnJavaPackageAction(DataFolder context) {
this.context = context;
}
@Override
public void actionPerformed(ActionEvent ev) {
JOptionPane.showMessageDialog(null, context.toString());
}
}
Apache Migration Information
The content in this page was kindly donated by Oracle Corp. to the Apache Software Foundation.
This page was exported from http://wiki.netbeans.org/DevFaqActionAddJavaPackage , that was last modified by NetBeans user Markiewb on 2013-07-07T19:43:15Z.
NOTE: This document was automatically converted to the AsciiDoc format on 2018-02-07, and needs to be reviewed.