jdplus.tramoseats.desktop.plugin.tramo.ui.actions.EditTramoSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdplus-tramoseats-desktop-plugin Show documentation
Show all versions of jdplus-tramoseats-desktop-plugin Show documentation
${project.parent.artifactId} - ${project.artifactId}
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package jdplus.tramoseats.desktop.plugin.tramo.ui.actions;
import jdplus.tramoseats.desktop.plugin.tramo.documents.TramoSpecManager;
import jdplus.toolkit.desktop.plugin.workspace.WorkspaceFactory;
import jdplus.toolkit.desktop.plugin.workspace.WorkspaceItem;
import jdplus.toolkit.desktop.plugin.workspace.nodes.WsNode;
import jdplus.tramoseats.base.api.tramo.TramoSpec;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import org.openide.awt.ActionRegistration;
import org.openide.awt.ActionReference;
import org.openide.awt.ActionReferences;
import org.openide.awt.ActionID;
import org.openide.util.NbBundle;
@ActionID(category = "Tools",
id = "demetra.desktop.tramo.ui.actions.EditTramoSpec")
@ActionRegistration(displayName = "#CTL_EditTramoSpec")
@ActionReferences({
@ActionReference(path = TramoSpecManager.ITEMPATH, position = 1000, separatorAfter=1090)
})
@NbBundle.Messages("CTL_EditTramoSpec=Open")
public class EditTramoSpec implements ActionListener {
private final WsNode context;
public EditTramoSpec(WsNode context) {
this.context = context;
}
@Override
public void actionPerformed(ActionEvent ev) {
final WorkspaceItem xdoc = context.getWorkspace().searchDocument(context.lookup(), TramoSpec.class);
if (xdoc == null || xdoc.getElement() == null) {
return;
}
TramoSpecManager mgr = (TramoSpecManager) WorkspaceFactory.getInstance().getManager(xdoc.getFamily());
if (mgr != null) {
mgr.edit(xdoc);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy