comparison dwtx/text/edits/MultiTextEdit.d @ 136:6dcb0baaa031

Regex removal of throws decls, some instanceof
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 02:20:40 +0200
parents 51e6e63f930e
children 5cf141e43417
comparison
equal deleted inserted replaced
135:65801ad2b265 136:6dcb0baaa031
106 * if needed.</p> 106 * if needed.</p>
107 * 107 *
108 * @exception MalformedTreeException if the edit isn't in a valid state 108 * @exception MalformedTreeException if the edit isn't in a valid state
109 * and can therefore not be executed 109 * and can therefore not be executed
110 */ 110 */
111 protected void checkIntegrity() throws MalformedTreeException { 111 protected void checkIntegrity() {
112 // does nothing 112 // does nothing
113 } 113 }
114 114
115 /** 115 /**
116 * {@inheritDoc} 116 * {@inheritDoc}
205 } 205 }
206 206
207 /* 207 /*
208 * @see TextEdit#performConsistencyCheck 208 * @see TextEdit#performConsistencyCheck
209 */ 209 */
210 void performConsistencyCheck(TextEditProcessor processor, IDocument document) throws MalformedTreeException { 210 void performConsistencyCheck(TextEditProcessor processor, IDocument document) {
211 checkIntegrity(); 211 checkIntegrity();
212 } 212 }
213 213
214 /* 214 /*
215 * @see TextEdit#performDocumentUpdating 215 * @see TextEdit#performDocumentUpdating
216 */ 216 */
217 int performDocumentUpdating(IDocument document) throws BadLocationException { 217 int performDocumentUpdating(IDocument document) {
218 fDelta= 0; 218 fDelta= 0;
219 return fDelta; 219 return fDelta;
220 } 220 }
221 221
222 /* 222 /*