PageRenderTime 40ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-0-pre5/org/gjt/sp/jedit/msg/EditorExitRequested.java

#
Java | 55 lines | 14 code | 4 blank | 37 comment | 0 complexity | 85f6d8c203f98afe32b44d511dd0ad76 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. * EditorExitRequested.java - Message sent before jEdit starts exiting
  3. * Copyright (C) 2000 Dirk Moebius
  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.msg;
  20. import org.gjt.sp.jedit.EBMessage;
  21. import org.gjt.sp.jedit.View;
  22. /**
  23. * Message sent when jEdit starts the exit process. It is send before
  24. * the settings are saved and the buffers are closed. Listeners of this
  25. * message should be aware that jEdit might not exit truely, maybe because
  26. * of errors, or the user cancelled the "Save unsaved changed" dialog, or
  27. * jEdit is in background mode.
  28. *
  29. * @author Dirk Moebius
  30. * @version $Id: EditorExitRequested.java 3791 2001-09-02 05:36:59Z spestov $
  31. *
  32. * @since jEdit 3.1pre4
  33. */
  34. public class EditorExitRequested extends EBMessage.NonVetoable
  35. {
  36. /**
  37. * Creates a new editor exiting started message.
  38. * @param view The view from which this exit was called
  39. */
  40. public EditorExitRequested(View view)
  41. {
  42. super(view);
  43. }
  44. /**
  45. * Returns the view involved.
  46. */
  47. public View getView()
  48. {
  49. return (View)getSource();
  50. }
  51. }