comparison dwtx/jface/text/projection/ProjectionDocumentEvent.d @ 146:75302ef3f92f

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 7d818bd32d63
children 1a5b8f8129df
comparison
equal deleted inserted replaced
145:02cd5f1224d3 146:75302ef3f92f
50 * @noextend This class is not intended to be subclassed by clients. 50 * @noextend This class is not intended to be subclassed by clients.
51 */ 51 */
52 public class ProjectionDocumentEvent : SlaveDocumentEvent { 52 public class ProjectionDocumentEvent : SlaveDocumentEvent {
53 53
54 /** The change type indicating a projection change */ 54 /** The change type indicating a projection change */
55 public final static Object PROJECTION_CHANGE= new Object(); 55 public const static Object PROJECTION_CHANGE= new Object();
56 /** The change type indicating a content change */ 56 /** The change type indicating a content change */
57 public final static Object CONTENT_CHANGE= new Object(); 57 public const static Object CONTENT_CHANGE= new Object();
58 58
59 /** The change type */ 59 /** The change type */
60 private Object fChangeType; 60 private Object fChangeType;
61 /** The offset of the change in the master document */ 61 /** The offset of the change in the master document */
62 private int fMasterOffset= -1; 62 private int fMasterOffset= -1;