net.sourceforge.dictport.ui
final class: Dict.NextWordAction [javadoc |
source]
java.lang.Object
javax.swing.AbstractAction
net.sourceforge.dictport.ui.Dict$DictAction
net.sourceforge.dictport.ui.Dict$NextWordAction
All Implemented Interfaces:
Action, Cloneable, Serializable
Next word action.
| Method from net.sourceforge.dictport.ui.Dict$NextWordAction Summary: |
|---|
|
actionPerformed |
| Methods from javax.swing.AbstractAction: |
|---|
|
addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, hasSelectedKey, isEnabled, isSelected, putValue, removePropertyChangeListener, setEnabled, setEnabledFromAction, setToolTipTextFromAction, shouldReconfigure |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from net.sourceforge.dictport.ui.Dict$NextWordAction Detail: |
public void actionPerformed(ActionEvent aEvent) {
Chapter.Entry entry = fDatabase.getNext(fInput.getText());
showEntry(entry);
fInput.selectAll();
}
|