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

/jEdit/tags/jedit-4-2-pre14/org/gjt/sp/jedit/OptionPane.java

#
Java | 62 lines | 9 code | 6 blank | 47 comment | 0 complexity | b867744b10509cba996ab0179fe8151d 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.<p>
  23. *
  24. * See {@link EditPlugin} for information on how jEdit obtains and constructs
  25. * option pane instances.<p>
  26. *
  27. * Note that in most cases it is much easier to extend
  28. * {@link AbstractOptionPane} instead.
  29. *
  30. * @author Slava Pestov
  31. * @version $Id: OptionPane.java 4669 2003-05-01 02:21:27Z spestov $
  32. */
  33. public interface OptionPane
  34. {
  35. /**
  36. * Returns the internal name of this option pane. The option pane's label
  37. * is set to the value of the property named
  38. * <code>options.<i>name</i>.label</code>.
  39. * @see jEdit#getProperty(String)
  40. */
  41. String getName();
  42. /**
  43. * Returns the component that should be displayed for this option pane.
  44. */
  45. Component getComponent();
  46. /**
  47. * This method is called every time the option pane is displayed.
  48. */
  49. void init();
  50. /**
  51. * Called when the options dialog's "ok" button is clicked.
  52. * This should save any properties being edited in this option
  53. * pane.
  54. */
  55. void save();
  56. }