mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-11-16 04:04:39 +00:00
23 lines
602 B
Java
23 lines
602 B
Java
|
package com.bytezone.diskbrowser.gui;
|
||
|
|
||
|
import java.awt.event.ActionEvent;
|
||
|
|
||
|
import javax.swing.JOptionPane;
|
||
|
|
||
|
import com.bytezone.common.DefaultAction;
|
||
|
|
||
|
class CreateDatabaseAction extends DefaultAction
|
||
|
{
|
||
|
public CreateDatabaseAction ()
|
||
|
{
|
||
|
super ("Create Database", "Not working yet", null);
|
||
|
// putValue (Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke ("alt A"));
|
||
|
// putValue (Action.MNEMONIC_KEY, KeyEvent.VK_A);
|
||
|
}
|
||
|
|
||
|
public void actionPerformed (ActionEvent e)
|
||
|
{
|
||
|
JOptionPane.showMessageDialog (null, "Coming soon...", "Database",
|
||
|
JOptionPane.INFORMATION_MESSAGE);
|
||
|
}
|
||
|
}
|