PageRenderTime 39ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

/bundles/plugins-trunk/InfoViewer/infoviewer/actions/FindNext.java

#
Java | 18 lines | 13 code | 5 blank | 0 comment | 0 complexity | 4f0efcac2878536ddf0d1650e302fbbf MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. package infoviewer.actions;
  2. import infoviewer.InfoViewer;
  3. import java.awt.event.ActionEvent;
  4. public class FindNext extends Find
  5. {
  6. public FindNext() {
  7. super("infoviewer.findnext");
  8. }
  9. public void actionPerformed(ActionEvent e)
  10. {
  11. InfoViewer v = getViewer(e);
  12. }
  13. }