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

# · Java · 18 lines · 13 code · 5 blank · 0 comment · 0 complexity · 4f0efcac2878536ddf0d1650e302fbbf MD5 · raw file

  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. }