diff dwtx/jface/text/link/LinkedModeModel.d @ 146:75302ef3f92f

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 26688fec6d23
children 5cf141e43417
line wrap: on
line diff
--- a/dwtx/jface/text/link/LinkedModeModel.d	Sun Aug 24 22:31:00 2008 +0200
+++ b/dwtx/jface/text/link/LinkedModeModel.d	Sun Aug 24 22:34:04 2008 +0200
@@ -262,13 +262,13 @@
     }
 
     /** The set of linked position groups. */
-    private final List fGroups= new ArrayList();
+    private const List fGroups= new ArrayList();
     /** The set of documents spanned by this group. */
-    private final Set fDocuments= new HashSet();
+    private const Set fDocuments= new HashSet();
     /** The position updater for linked positions. */
-    private final IPositionUpdater fUpdater= new InclusivePositionUpdater(getCategory());
+    private const IPositionUpdater fUpdater= new InclusivePositionUpdater(getCategory());
     /** The document listener on the documents affected by this model. */
-    private final DocumentListener fDocumentListener= new DocumentListener();
+    private const DocumentListener fDocumentListener= new DocumentListener();
     /** The parent model for a hierarchical set up, or <code>null</code>. */
     private LinkedModeModel fParentEnvironment;
     /**
@@ -285,7 +285,7 @@
     /** <code>true</code> when this model is changing documents. */
     private bool fIsChanging= false;
     /** The linked listeners. */
-    private final List fListeners= new ArrayList();
+    private const List fListeners= new ArrayList();
     /** Flag telling whether we have exited: */
     private bool fIsActive= true;
     /**