Skip to content

DevFaqActionAddAnyFolder

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

DevFaqActionAddAnyFolder

How can I add actions to all folder nodes?

Register to Loaders/folder/any/Actions

Example:

@ActionID(
        category = "Build",
        id = "com.foo.bar.OnAnyFolderAction")
@ActionRegistration(
        displayName = "#CTL_OnAnyFolderAction")
@ActionReferences({
    @ActionReference(path = "Loaders/folder/any/Actions", position = 0)
})
@Messages("CTL_OnAnyFolderAction=ActionOnAnyFolder")
public final class OnAnyFolderAction implements ActionListener {

    private final DataFolder context;

    public OnAnyFolderAction(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/DevFaqActionAddAnyFolder , that was last modified by NetBeans user Markiewb on 2013-07-07T19:41:45Z.

NOTE: This document was automatically converted to the AsciiDoc format on 2018-01-26, and needs to be reviewed.

Clone this wiki locally