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

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 7d818bd32d63
children 7926b636c282
comparison
equal deleted inserted replaced
145:02cd5f1224d3 146:75302ef3f92f
168 * @noextend This class is not intended to be subclassed by clients. 168 * @noextend This class is not intended to be subclassed by clients.
169 */ 169 */
170 public class DefaultLineTracker : AbstractLineTracker { 170 public class DefaultLineTracker : AbstractLineTracker {
171 171
172 /** The predefined delimiters of this tracker */ 172 /** The predefined delimiters of this tracker */
173 public final static String[] DELIMITERS= { "\r", "\n", "\r\n" }; //$NON-NLS-3$ //$NON-NLS-1$ //$NON-NLS-2$ 173 public const static String[] DELIMITERS= { "\r", "\n", "\r\n" }; //$NON-NLS-3$ //$NON-NLS-1$ //$NON-NLS-2$
174 /** A predefined delimiter information which is always reused as return value */ 174 /** A predefined delimiter information which is always reused as return value */
175 private DelimiterInfo fDelimiterInfo= new DelimiterInfo(); 175 private DelimiterInfo fDelimiterInfo= new DelimiterInfo();
176 176
177 177
178 /** 178 /**