comparison dwtx/jface/text/link/TabStopIterator.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
79 /** Index of the current element, to the first one initially. */ 79 /** Index of the current element, to the first one initially. */
80 private int fIndex; 80 private int fIndex;
81 /** Cycling property. */ 81 /** Cycling property. */
82 private bool fIsCycling= false; 82 private bool fIsCycling= false;
83 83
84 TabStopIterator(List positionSequence) { 84 this(List positionSequence) {
85 Assert.isNotNull(positionSequence); 85 Assert.isNotNull(positionSequence);
86 fList= new ArrayList(positionSequence); 86 fList= new ArrayList(positionSequence);
87 Collections.sort(fList, fComparator); 87 Collections.sort(fList, fComparator);
88 fSize= fList.size(); 88 fSize= fList.size();
89 fIndex= -1; 89 fIndex= -1;