Last change
on this file since 345 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
347 bytes
|
Rev | Line | |
---|
[1] | 1 | package genius.gui.actions;
|
---|
| 2 |
|
---|
| 3 | import java.awt.event.ActionEvent;
|
---|
| 4 |
|
---|
| 5 | import javax.swing.AbstractAction;
|
---|
| 6 |
|
---|
| 7 | import genius.gui.About;
|
---|
| 8 |
|
---|
| 9 | @SuppressWarnings("serial")
|
---|
| 10 | public class AboutAction extends AbstractAction {
|
---|
| 11 |
|
---|
| 12 | public AboutAction() {
|
---|
| 13 | super("About");
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | @Override
|
---|
| 17 | public void actionPerformed(ActionEvent e) {
|
---|
| 18 | new About().setVisible(true);
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.