PageRenderTime 49ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-5-pre1/org/gjt/sp/jedit/options/BrowserContextOptionPane.java

#
Java | 63 lines | 20 code | 7 blank | 36 comment | 0 complexity | f10bc7e279b23110192c6214762b4236 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. * jEdit - Programmer's Text Editor
  3. * :tabSize=8:indentSize=8:noTabs=false:
  4. * :folding=explicit:collapseFolds=1:
  5. *
  6. * Copyright Š 2011 Matthieu Casanova
  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 org.gjt.sp.jedit.options;
  22. import org.gjt.sp.jedit.gui.AbstractContextOptionPane;
  23. import org.gjt.sp.jedit.jEdit;
  24. /**
  25. * Right-click context menu editor.
  26. *
  27. * @author Matthieu Casanova
  28. * @version $Id: ContextOptionPane.java 12504 2008-04-22 23:12:43Z ezust $
  29. */
  30. public class BrowserContextOptionPane extends AbstractContextOptionPane
  31. {
  32. public BrowserContextOptionPane()
  33. {
  34. super("browser.custom.context", jEdit.getProperty("options.browser.context.caption"));
  35. }
  36. /**
  37. * Returns jEdit's context menu configuration.
  38. *
  39. * @since jEdit 4.3pre13
  40. */
  41. @Override
  42. protected String getContextMenu()
  43. {
  44. return jEdit.getProperty("browser.custom.context");
  45. }
  46. /**
  47. * Saves jEdit's context menu configuration.
  48. *
  49. * @since jEdit 4.3pre13
  50. */
  51. @Override
  52. protected void saveContextMenu(String menu)
  53. {
  54. jEdit.setProperty("browser.custom.context", menu);
  55. }
  56. }