Skip to content
Snippets Groups Projects
Commit 8cc400f9 authored by Richard Pajerský's avatar Richard Pajerský
Browse files

Added New Project drop down menu under File, setup for other options

parent f5293668
No related branches found
No related tags found
No related merge requests found
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cz.fidentis.analyst.gui;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import org.openide.awt.ActionID;
import org.openide.awt.ActionReference;
import org.openide.awt.ActionRegistration;
import org.openide.util.NbBundle.Messages;
@ActionID(
category = "File",
id = "cz.fidentis.analyst.gui.SymmetryEstimator"
)
@ActionRegistration(
displayName = "#CTL_SymmetryEstimator"
)
@ActionReference(path = "Menu/File/NewProject", position = 1300, separatorAfter = 1350)
@Messages("CTL_SymmetryEstimator=Symmetry Estimator")
public final class SymmetryEstimator implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
// TODO implement action body
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment