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

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:35:05 +0200
parents 7d818bd32d63
children eb21d3dfc767
comparison
equal deleted inserted replaced
146:75302ef3f92f 147:000f9136b8f7
43 * <code>java.lang#Boolean</code>. If set to <code>true</code> the whole 43 * <code>java.lang#Boolean</code>. If set to <code>true</code> the whole
44 * document is formatted. 44 * document is formatted.
45 * <p> 45 * <p>
46 * Value: <code>"formatting.context.document"</code> 46 * Value: <code>"formatting.context.document"</code>
47 */ 47 */
48 public static final String CONTEXT_DOCUMENT= "formatting.context.document"; //$NON-NLS-1$ 48 public static const String CONTEXT_DOCUMENT= "formatting.context.document"; //$NON-NLS-1$
49 49
50 /** 50 /**
51 * Property key of the partition property. The property must implement 51 * Property key of the partition property. The property must implement
52 * <code>dwtx.jface.text#TypedPosition</code>. The partition 52 * <code>dwtx.jface.text#TypedPosition</code>. The partition
53 * a context based formatting strategy should format. 53 * a context based formatting strategy should format.
54 * <p> 54 * <p>
55 * Value: <code>"formatting.context.partition"</code> 55 * Value: <code>"formatting.context.partition"</code>
56 */ 56 */
57 public static final String CONTEXT_PARTITION= "formatting.context.partition"; //$NON-NLS-1$ 57 public static const String CONTEXT_PARTITION= "formatting.context.partition"; //$NON-NLS-1$
58 58
59 /** 59 /**
60 * Property key of the preferences property. The property must implement 60 * Property key of the preferences property. The property must implement
61 * <code>java.util#Map</code>. The formatting preferences mapping preference 61 * <code>java.util#Map</code>. The formatting preferences mapping preference
62 * keys to values. 62 * keys to values.
63 * <p> 63 * <p>
64 * Value: <code>"formatting.context.preferences"</code> 64 * Value: <code>"formatting.context.preferences"</code>
65 */ 65 */
66 public static final String CONTEXT_PREFERENCES= "formatting.context.preferences"; //$NON-NLS-1$ 66 public static const String CONTEXT_PREFERENCES= "formatting.context.preferences"; //$NON-NLS-1$
67 67
68 /** 68 /**
69 * Property key of the region property. The property must implement <code>dwtx.jface.text#IRegion</code>. 69 * Property key of the region property. The property must implement <code>dwtx.jface.text#IRegion</code>.
70 * The region to format. If set, {@link FormattingContextProperties#CONTEXT_DOCUMENT} should be <code>false</code> 70 * The region to format. If set, {@link FormattingContextProperties#CONTEXT_DOCUMENT} should be <code>false</code>
71 * for this to take effect. 71 * for this to take effect.
72 * <p> 72 * <p>
73 * Value: <code>"formatting.context.region"</code> 73 * Value: <code>"formatting.context.region"</code>
74 */ 74 */
75 public static final String CONTEXT_REGION= "formatting.context.region"; //$NON-NLS-1$ 75 public static const String CONTEXT_REGION= "formatting.context.region"; //$NON-NLS-1$
76 76
77 /** 77 /**
78 * Property key of the medium property. The property must implement <code>dwtx.jface.text#IDocument</code>. 78 * Property key of the medium property. The property must implement <code>dwtx.jface.text#IDocument</code>.
79 * The document to format. 79 * The document to format.
80 * <p> 80 * <p>
81 * Value: <code>"formatting.context.medium"</code> 81 * Value: <code>"formatting.context.medium"</code>
82 */ 82 */
83 public static final String CONTEXT_MEDIUM= "formatting.context.medium"; //$NON-NLS-1$ 83 public static const String CONTEXT_MEDIUM= "formatting.context.medium"; //$NON-NLS-1$
84 84
85 /** 85 /**
86 * Ensure that this class cannot be instantiated. 86 * Ensure that this class cannot be instantiated.
87 */ 87 */
88 private this() { 88 private this() {