Skip to content

DevFaqActionAddJavaPackage

Antonio Vieiro edited this page Jan 25, 2018 · 1 revision

DevFaqActionAddJavaPackage

How can I to add actions to the Java package node?

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-01-26, and needs to be reviewed.

Clone this wiki locally