public class Commander extends Object implements Command, ActionListener, DocumentListener, KeyListener, ListSelectionListener, MouseListener, WindowListener
Commander is modeled after CommandFinder by Mark Longair and FunctionFinder by Jerome Mutterer. It is also influenced by Johannes
Schindelin's Recent_Commands plugin and a bit of DOS nostalgia. Drag and drop support
is implemented by FileDrop
(website).
| Constructor and Description |
|---|
Commander() |
Commander(String startupString) |
| Modifier and Type | Method and Description |
|---|---|
void |
actionPerformed(ActionEvent e) |
void |
changedUpdate(DocumentEvent ev) |
void |
insertUpdate(DocumentEvent ev) |
void |
keyPressed(KeyEvent ke) |
void |
keyReleased(KeyEvent ke) |
void |
keyTyped(KeyEvent ke) |
static void |
main(String... args) |
void |
mouseClicked(MouseEvent e) |
void |
mouseEntered(MouseEvent e) |
void |
mouseExited(MouseEvent e) |
void |
mousePressed(MouseEvent e) |
void |
mouseReleased(MouseEvent e) |
void |
removeUpdate(DocumentEvent ev) |
void |
run() |
void |
valueChanged(ListSelectionEvent e) |
void |
windowActivated(WindowEvent e) |
void |
windowClosed(WindowEvent e) |
void |
windowClosing(WindowEvent e) |
void |
windowDeactivated(WindowEvent e) |
void |
windowDeiconified(WindowEvent e) |
void |
windowIconified(WindowEvent e) |
void |
windowOpened(WindowEvent e) |
public Commander()
public Commander(String startupString)
public static void main(String... args)
public void actionPerformed(ActionEvent e)
actionPerformed in interface ActionListenerpublic void insertUpdate(DocumentEvent ev)
insertUpdate in interface DocumentListenerpublic void removeUpdate(DocumentEvent ev)
removeUpdate in interface DocumentListenerpublic void changedUpdate(DocumentEvent ev)
changedUpdate in interface DocumentListenerpublic void valueChanged(ListSelectionEvent e)
valueChanged in interface ListSelectionListenerpublic void keyPressed(KeyEvent ke)
keyPressed in interface KeyListenerpublic void keyReleased(KeyEvent ke)
keyReleased in interface KeyListenerpublic void keyTyped(KeyEvent ke)
keyTyped in interface KeyListenerpublic void mouseClicked(MouseEvent e)
mouseClicked in interface MouseListenerpublic void mousePressed(MouseEvent e)
mousePressed in interface MouseListenerpublic void mouseReleased(MouseEvent e)
mouseReleased in interface MouseListenerpublic void mouseEntered(MouseEvent e)
mouseEntered in interface MouseListenerpublic void mouseExited(MouseEvent e)
mouseExited in interface MouseListenerpublic void windowClosing(WindowEvent e)
windowClosing in interface WindowListenerpublic void windowActivated(WindowEvent e)
windowActivated in interface WindowListenerpublic void windowClosed(WindowEvent e)
windowClosed in interface WindowListenerpublic void windowDeactivated(WindowEvent e)
windowDeactivated in interface WindowListenerpublic void windowDeiconified(WindowEvent e)
windowDeiconified in interface WindowListenerpublic void windowIconified(WindowEvent e)
windowIconified in interface WindowListenerpublic void windowOpened(WindowEvent e)
windowOpened in interface WindowListenerCopyright © 2014–2017 Fiji. All rights reserved.