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 ActionListener
public void insertUpdate(DocumentEvent ev)
insertUpdate
in interface DocumentListener
public void removeUpdate(DocumentEvent ev)
removeUpdate
in interface DocumentListener
public void changedUpdate(DocumentEvent ev)
changedUpdate
in interface DocumentListener
public void valueChanged(ListSelectionEvent e)
valueChanged
in interface ListSelectionListener
public void keyPressed(KeyEvent ke)
keyPressed
in interface KeyListener
public void keyReleased(KeyEvent ke)
keyReleased
in interface KeyListener
public void keyTyped(KeyEvent ke)
keyTyped
in interface KeyListener
public void mouseClicked(MouseEvent e)
mouseClicked
in interface MouseListener
public void mousePressed(MouseEvent e)
mousePressed
in interface MouseListener
public void mouseReleased(MouseEvent e)
mouseReleased
in interface MouseListener
public void mouseEntered(MouseEvent e)
mouseEntered
in interface MouseListener
public void mouseExited(MouseEvent e)
mouseExited
in interface MouseListener
public void windowClosing(WindowEvent e)
windowClosing
in interface WindowListener
public void windowActivated(WindowEvent e)
windowActivated
in interface WindowListener
public void windowClosed(WindowEvent e)
windowClosed
in interface WindowListener
public void windowDeactivated(WindowEvent e)
windowDeactivated
in interface WindowListener
public void windowDeiconified(WindowEvent e)
windowDeiconified
in interface WindowListener
public void windowIconified(WindowEvent e)
windowIconified
in interface WindowListener
public void windowOpened(WindowEvent e)
windowOpened
in interface WindowListener
Copyright © 2014–2017 Fiji. All rights reserved.