comparison dwtx/jface/text/link/LinkedPosition.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 b6bad70d540a
comparison
equal deleted inserted replaced
135:65801ad2b265 136:6dcb0baaa031
160 * Returns the content of this position on the referenced document. 160 * Returns the content of this position on the referenced document.
161 * 161 *
162 * @return the content of the document at this position 162 * @return the content of the document at this position
163 * @throws BadLocationException if the position is not valid 163 * @throws BadLocationException if the position is not valid
164 */ 164 */
165 public String getContent() throws BadLocationException { 165 public String getContent() {
166 return fDocument.get(offset, length); 166 return fDocument.get(offset, length);
167 } 167 }
168 168
169 /** 169 /**
170 * Returns the sequence number of this position. 170 * Returns the sequence number of this position.