PageRenderTime 41ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Java | 56 lines | 26 code | 7 blank | 23 comment | 2 complexity | 54c4a4b833dbde514c1733ad28de190f 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 org.gjt.sp.jedit.EBMessage;
  23. /**
  24. * @author Matthieu Casanova
  25. */
  26. public class LuceneIndexUpdate extends EBMessage
  27. {
  28. private final What what;
  29. public enum What
  30. {
  31. CREATED, DESTROYED
  32. }
  33. LuceneIndexUpdate(String indexName, What what)
  34. {
  35. super(indexName);
  36. if(what == null)
  37. throw new NullPointerException("What must be non-null");
  38. this.what = what;
  39. }
  40. public What getWhat()
  41. {
  42. return what;
  43. }
  44. @Override
  45. public String paramString()
  46. {
  47. return "what=" + what + ',' + super.paramString();
  48. }
  49. }