PageRenderTime 52ms CodeModel.GetById 12ms RepoModel.GetById 1ms app.codeStats 0ms

/jEdit/tags/jedit-4-1-pre5/org/gjt/sp/jedit/msg/BufferUpdate.java

#
Java | 147 lines | 42 code | 21 blank | 84 comment | 2 complexity | 317a03a4704a49cb3898506b67386cbb 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. * BufferUpdate.java - Buffer update message
  3. * :tabSize=8:indentSize=8:noTabs=false:
  4. * :folding=explicit:collapseFolds=1:
  5. *
  6. * Copyright (C) 1999, 2001 Slava Pestov
  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. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. package org.gjt.sp.jedit.msg;
  23. import org.gjt.sp.jedit.*;
  24. /**
  25. * Message sent when a buffer-related change occurs.
  26. * @author Slava Pestov
  27. * @version $Id: BufferUpdate.java 4207 2002-05-29 09:53:14Z spestov $
  28. *
  29. * @since jEdit 2.2pre6
  30. */
  31. public class BufferUpdate extends EBMessage
  32. {
  33. //{{{ Message types
  34. /**
  35. * Buffer created.
  36. */
  37. public static final Object CREATED = "CREATED";
  38. /**
  39. * Buffer load started.
  40. * @since jEdit 2.6pre1
  41. */
  42. public static final Object LOAD_STARTED = "LOAD_STARTED";
  43. /**
  44. * Buffer loaded.
  45. */
  46. public static final Object LOADED = "LOADED";
  47. /**
  48. * Buffer closed.
  49. */
  50. public static final Object CLOSED = "CLOSED";
  51. /**
  52. * Buffer dirty changed.
  53. */
  54. public static final Object DIRTY_CHANGED = "DIRTY_CHANGED";
  55. /**
  56. * Buffer markers changed.
  57. */
  58. public static final Object MARKERS_CHANGED = "MARKERS_CHANGED";
  59. /**
  60. * Buffer saving.
  61. */
  62. public static final Object SAVING = "SAVING";
  63. /**
  64. * Buffer saved.
  65. * @since jEdit 4.0pre4
  66. */
  67. public static final Object SAVED = "SAVED";
  68. /**
  69. * Properties changed.
  70. * @since jEdit 4.1pre1
  71. */
  72. public static final Object PROPERTIES_CHANGED = "PROPERTIES_CHANGED";
  73. /**
  74. * Mode changed.
  75. */
  76. public static final Object MODE_CHANGED = "MODE_CHANGED";
  77. //}}}
  78. //{{{ BufferUpdate constructor
  79. /**
  80. * Creates a new buffer update message.
  81. * @param buffer The buffer
  82. * @param what What happened
  83. */
  84. public BufferUpdate(Buffer buffer, View view, Object what)
  85. {
  86. super(buffer);
  87. this.view = view;
  88. if(what == null)
  89. throw new NullPointerException("What must be non-null");
  90. this.what = what;
  91. } //}}}
  92. //{{{ getWhat() method
  93. /**
  94. * Returns what caused this buffer update.
  95. */
  96. public Object getWhat()
  97. {
  98. return what;
  99. } //}}}
  100. //{{{ getBuffer() method
  101. /**
  102. * Returns the buffer involved.
  103. */
  104. public Buffer getBuffer()
  105. {
  106. return (Buffer)getSource();
  107. } //}}}
  108. //{{{ getView() method
  109. /**
  110. * Returns the view involved, which may be null.
  111. */
  112. public View getView()
  113. {
  114. return view;
  115. } //}}}
  116. //{{{ paramString() method
  117. public String paramString()
  118. {
  119. return "what=" + what + ",view=" + view + ","
  120. + super.paramString();
  121. } //}}}
  122. //{{{ Private members
  123. private Object what;
  124. private View view;
  125. //}}}
  126. }