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

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:35:05 +0200
parents b6bad70d540a
children 3678e4f1a766
comparison
equal deleted inserted replaced
146:75302ef3f92f 147:000f9136b8f7
173 /** 173 /**
174 * Text attribute for strikethrough style. 174 * Text attribute for strikethrough style.
175 * (value <code>1 << 29</code>). 175 * (value <code>1 << 29</code>).
176 * @since 3.1 176 * @since 3.1
177 */ 177 */
178 public static final int STRIKETHROUGH= 1 << 29; 178 public static const int STRIKETHROUGH= 1 << 29;
179 179
180 /** 180 /**
181 * Text attribute for underline style. 181 * Text attribute for underline style.
182 * (value <code>1 << 30</code>) 182 * (value <code>1 << 30</code>)
183 * @since 3.1 183 * @since 3.1
184 */ 184 */
185 public static final int UNDERLINE= 1 << 30; 185 public static const int UNDERLINE= 1 << 30;
186 186
187 187
188 /** Foreground color */ 188 /** Foreground color */
189 private Color foreground; 189 private Color foreground;
190 190