comparison dwtx/jface/text/source/AnnotationModelEvent.d @ 162:1a5b8f8129df

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents f70d9508c95c
children
comparison
equal deleted inserted replaced
161:f8d52b926852 162:1a5b8f8129df
104 private IAnnotationModel fAnnotationModel; 104 private IAnnotationModel fAnnotationModel;
105 /** 105 /**
106 * The added annotations. 106 * The added annotations.
107 * @since 3.0 107 * @since 3.0
108 */ 108 */
109 private Set fAddedAnnotations= new HashSet(); 109 private Set fAddedAnnotations;
110 /** 110 /**
111 * The removed annotations. 111 * The removed annotations.
112 * @since 3.0 112 * @since 3.0
113 */ 113 */
114 private Map fRemovedAnnotations= new HashMap(); 114 private Map fRemovedAnnotations;
115 /** 115 /**
116 * The changed annotations. 116 * The changed annotations.
117 * @since 3.0 117 * @since 3.0
118 */ 118 */
119 private Set fChangedAnnotations= new HashSet(); 119 private Set fChangedAnnotations;
120 /** 120 /**
121 * Indicates that this event does not contain detailed information. 121 * Indicates that this event does not contain detailed information.
122 * @since 3.0 122 * @since 3.0
123 */ 123 */
124 private bool fIsWorldChange; 124 private bool fIsWorldChange;
143 * @param model the model 143 * @param model the model
144 * @param isWorldChange <code>true</code> if world change 144 * @param isWorldChange <code>true</code> if world change
145 * @since 3.0 145 * @since 3.0
146 */ 146 */
147 public this(IAnnotationModel model, bool isWorldChange) { 147 public this(IAnnotationModel model, bool isWorldChange) {
148 fAddedAnnotations= new HashSet();
149 fRemovedAnnotations= new HashMap();
150 fChangedAnnotations= new HashSet();
151
148 fAnnotationModel= model; 152 fAnnotationModel= model;
149 fIsWorldChange= isWorldChange; 153 fIsWorldChange= isWorldChange;
150 } 154 }
151 155
152 /** 156 /**