View | Details | Raw Unified | Return to bug 73104
Collapse All | Expand All

(-)DefaultCodeFormatterConstants.java (-2 / +15 lines)
Lines 173-178 Link Here
173
	
173
	
174
	/**
174
	/**
175
	 * <pre>
175
	 * <pre>
176
	 * FORMATTER / Possible value for the option FORMATTER_TAB_CHAR
177
	 * </pre>
178
	 * @since 3.1
179
	 * @see JavaCore#TAB
180
	 * @see JavaCore#SPACE
181
	 */
182
	public static final String MIXED = "mixed"; //$NON-NLS-1$
183
	
184
	/**
185
	 * <pre>
176
	 * FORMATTER / Option for alignment of arguments in allocation expression
186
	 * FORMATTER / Option for alignment of arguments in allocation expression
177
	 *     - option id:         "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression"
187
	 *     - option id:         "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression"
178
	 *     - possible values:   values returned by <code>createAlignmentValue(boolean, int, int)</code> call
188
	 *     - possible values:   values returned by <code>createAlignmentValue(boolean, int, int)</code> call
Lines 2870-2881 Link Here
2870
	/**
2880
	/**
2871
	 * <pre>
2881
	 * <pre>
2872
	 * FORMATTER / Option to specify the tabulation size
2882
	 * FORMATTER / Option to specify the tabulation size
2873
	 *     - option id:         "org.eclipse.jdt.core.formatter.tabulation.size"
2883
	 *     - option id:         "org.eclipse.jdt.core.formatter.tabulation.char"
2874
	 *     - possible values:   { TAB, SPACE }
2884
	 *     - possible values:   { TAB, SPACE, MIXED }
2875
	 *     - default:           TAB
2885
	 *     - default:           TAB
2876
	 * </pre>
2886
	 * </pre>
2887
	 * More values may be added in the future.
2888
	 * 
2877
	 * @see JavaCore#TAB
2889
	 * @see JavaCore#TAB
2878
	 * @see JavaCore#SPACE
2890
	 * @see JavaCore#SPACE
2891
	 * @see #MIXED
2879
	 * @since 3.0
2892
	 * @since 3.0
2880
	 */
2893
	 */
2881
	public static final String FORMATTER_TAB_CHAR = JavaCore.PLUGIN_ID + ".formatter.tabulation.char"; //$NON-NLS-1$
2894
	public static final String FORMATTER_TAB_CHAR = JavaCore.PLUGIN_ID + ".formatter.tabulation.char"; //$NON-NLS-1$

Return to bug 73104