PageRenderTime 45ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-0-pre3/org/gjt/sp/jedit/OptionPane.java

#
Java | 59 lines | 9 code | 6 blank | 44 comment | 0 complexity | 0628b827b1d8c807c1e9cf34706f9c25 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. * OptionPane.java - Option pane interface
  3. * Copyright (C) 1999 Slava Pestov
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. package org.gjt.sp.jedit;
  20. import java.awt.Component;
  21. /**
  22. * The interface all option panes must implement. Internally, jEdit uses
  23. * option panes to implement the tabs in the "Global Options" dialog box.
  24. * Plugins can also create option panes for the "Plugin Options" dialog
  25. * box.<p>
  26. *
  27. * The <i>name</i> of an option pane is returned by the <code>getName()</code>
  28. * method. The label displayed in the option pane's tab is obtained from the
  29. * <code>options.<i>name</i>.label</code> property.
  30. *
  31. * @see org.gjt.sp.jedit.AbstractOptionPane
  32. */
  33. public interface OptionPane
  34. {
  35. /**
  36. * Returns the internal name of this option pane.
  37. */
  38. String getName();
  39. /**
  40. * Returns the component that should be displayed for this option pane.
  41. */
  42. Component getComponent();
  43. /**
  44. * This method should create the option pane's GUI.
  45. */
  46. void init();
  47. /**
  48. * Called when the options dialog's "ok" button is clicked.
  49. * This should save any properties being edited in this option
  50. * pane.
  51. */
  52. void save();
  53. }