PageRenderTime 47ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/bundles/plugins-trunk/LucenePlugin/src/gatchan/jedit/lucene/ProjectWatcher.java

#
Java | 69 lines | 41 code | 8 blank | 20 comment | 8 complexity | 9f72874e9400412ba503a853e49e13e3 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. /*
  2. * :tabSize=8:indentSize=8:noTabs=false:
  3. * :folding=explicit:collapseFolds=1:
  4. *
  5. * Copyright (C) 2009, 2011 Matthieu Casanova
  6. * Copyright (C) 2009, 2011 Shlomy Reinstein
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or any later version.
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20. */
  21. package gatchan.jedit.lucene;
  22. import javax.swing.JOptionPane;
  23. import org.gjt.sp.jedit.EditBus;
  24. import org.gjt.sp.jedit.jEdit;
  25. import org.gjt.sp.jedit.EditBus.EBHandler;
  26. import projectviewer.event.StructureUpdate;
  27. import projectviewer.event.ViewerUpdate;
  28. public class ProjectWatcher
  29. {
  30. public ProjectWatcher()
  31. {
  32. EditBus.addToBus(this);
  33. }
  34. @EBHandler
  35. public void handleStructureUpdate(StructureUpdate su)
  36. {
  37. if (su.getType() == StructureUpdate.Type.PROJECT_REMOVED)
  38. checkRemoveProjectIndex(su.getNode().getName());
  39. }
  40. @EBHandler
  41. public void handleViewerUpdate(ViewerUpdate vu)
  42. {
  43. if (vu.getType() == ViewerUpdate.Type.PROJECT_LOADED)
  44. LucenePlugin.instance.setCurrentIndex(vu.getView(), vu.getNode().getName());
  45. }
  46. private static void checkRemoveProjectIndex(String project)
  47. {
  48. Index index = LucenePlugin.instance.getIndex(project);
  49. if (index == null)
  50. return;
  51. int res = JOptionPane
  52. .showConfirmDialog(jEdit.getActiveView(), "Remove Lucene index of project '" + project + "'?",
  53. "Lucene plugin", JOptionPane.YES_NO_OPTION);
  54. if (res == JOptionPane.YES_OPTION)
  55. LucenePlugin.instance.removeIndex(project);
  56. }
  57. public void stop()
  58. {
  59. EditBus.removeFromBus(this);
  60. }
  61. }