/bundles/plugins-trunk/InfoViewer/infoviewer/actions/Find.java
# · Java · 23 lines · 18 code · 5 blank · 0 comment · 0 complexity · 1a2d6ada8eaec2e076d0308dc78a2ace MD5 · raw file
- package infoviewer.actions;
- import infoviewer.InfoViewer;
- import java.awt.event.ActionEvent;
- public class Find extends InfoViewerAction
- {
- public Find() {
- super("infoviewer.find");
- }
- protected Find(String name) {
- super(name);
- }
- public void actionPerformed(ActionEvent e)
- {
- InfoViewer v = getViewer(e);
-
- getViewer(e).focusAddressBar();
- }
- protected static String lastString;
- }