1 package org.telscenter.pas.navigation;
2
3 import java.awt.event.ActionEvent;
4
5 import javax.swing.AbstractAction;
6 import javax.swing.Icon;
7
8 import org.telscenter.pas.ui.beans.issueReporter.IssueReporter;
9
10
11 public class ShowIssueReporterDialogAction extends AbstractAction {
12
13 public ShowIssueReporterDialogAction() {
14 super();
15
16 }
17
18 public ShowIssueReporterDialogAction(String name) {
19 super(name);
20
21 }
22
23 public ShowIssueReporterDialogAction(String name, Icon icon) {
24 super(name, icon);
25
26 }
27
28
29 public void actionPerformed(ActionEvent e) {
30 showIssueReporter();
31
32 }
33
34 protected void showIssueReporter() {
35 IssueReporter ir = new IssueReporter();
36 ir.showIssueReporter();
37 }
38
39 }