comparison dwtx/jface/text/AbstractInformationControlManager.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
291 /** 291 /**
292 * Constitutes entities to enumerate anchors for the layout of the information control. 292 * Constitutes entities to enumerate anchors for the layout of the information control.
293 */ 293 */
294 public static final class Anchor { 294 public static final class Anchor {
295 private final int fFlag; 295 private final int fFlag;
296 private Anchor(int flag) { 296 private this(int flag) {
297 fFlag= flag; 297 fFlag= flag;
298 } 298 }
299 /** 299 /**
300 * Returns the DWT direction flag. One of {@link DWT#BOTTOM}, {@link DWT#TOP}, 300 * Returns the DWT direction flag. One of {@link DWT#BOTTOM}, {@link DWT#TOP},
301 * {@link DWT#LEFT}, {@link DWT#RIGHT}, {@link DWT#CENTER}, 301 * {@link DWT#LEFT}, {@link DWT#RIGHT}, {@link DWT#CENTER},
521 * <li> takes focus when visible is false 521 * <li> takes focus when visible is false
522 * </ul> 522 * </ul>
523 * 523 *
524 * @param creator the information control creator 524 * @param creator the information control creator
525 */ 525 */
526 protected AbstractInformationControlManager(IInformationControlCreator creator) { 526 protected this(IInformationControlCreator creator) {
527 Assert.isNotNull(creator); 527 Assert.isNotNull(creator);
528 fInformationControlCreator= creator; 528 fInformationControlCreator= creator;
529 } 529 }
530 530
531 /** 531 /**