comparison dwtx/jface/text/link/LinkedModeUI.d @ 147:000f9136b8f7

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:35:05 +0200
parents 75302ef3f92f
children b411f1c62131
comparison
equal deleted inserted replaced
146:75302ef3f92f 147:000f9136b8f7
98 /* cycle constants */ 98 /* cycle constants */
99 /** 99 /**
100 * Constant indicating that this UI should never cycle from the last 100 * Constant indicating that this UI should never cycle from the last
101 * position to the first and vice versa. 101 * position to the first and vice versa.
102 */ 102 */
103 public static final Object CYCLE_NEVER= new Object(); 103 public static const Object CYCLE_NEVER= new Object();
104 /** 104 /**
105 * Constant indicating that this UI should always cycle from the last 105 * Constant indicating that this UI should always cycle from the last
106 * position to the first and vice versa. 106 * position to the first and vice versa.
107 */ 107 */
108 public static final Object CYCLE_ALWAYS= new Object(); 108 public static const Object CYCLE_ALWAYS= new Object();
109 /** 109 /**
110 * Constant indicating that this UI should cycle from the last position to 110 * Constant indicating that this UI should cycle from the last position to
111 * the first and vice versa if its model is not nested. 111 * the first and vice versa if its model is not nested.
112 */ 112 */
113 public static final Object CYCLE_WHEN_NO_PARENT= new Object(); 113 public static const Object CYCLE_WHEN_NO_PARENT= new Object();
114 114
115 /** 115 /**
116 * Listener that gets notified when the linked mode UI switches its focus position. 116 * Listener that gets notified when the linked mode UI switches its focus position.
117 * <p> 117 * <p>
118 * Clients may implement this interface. 118 * Clients may implement this interface.