Index: DefaultCodeFormatterConstants.java =================================================================== RCS file: /home/eclipse/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java,v retrieving revision 1.53 diff -u -r1.53 DefaultCodeFormatterConstants.java --- DefaultCodeFormatterConstants.java 23 Feb 2005 02:47:58 -0000 1.53 +++ DefaultCodeFormatterConstants.java 10 Mar 2005 19:51:21 -0000 @@ -173,6 +173,16 @@ /** *
+	 * FORMATTER / Possible value for the option FORMATTER_TAB_CHAR
+	 * 
+ * @since 3.1 + * @see JavaCore#TAB + * @see JavaCore#SPACE + */ + public static final String MIXED = "mixed"; //$NON-NLS-1$ + + /** + *
 	 * FORMATTER / Option for alignment of arguments in allocation expression
 	 *     - option id:         "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression"
 	 *     - possible values:   values returned by createAlignmentValue(boolean, int, int) call
@@ -2870,12 +2880,15 @@
 	/**
 	 * 
 	 * FORMATTER / Option to specify the tabulation size
-	 *     - option id:         "org.eclipse.jdt.core.formatter.tabulation.size"
-	 *     - possible values:   { TAB, SPACE }
+	 *     - option id:         "org.eclipse.jdt.core.formatter.tabulation.char"
+	 *     - possible values:   { TAB, SPACE, MIXED }
 	 *     - default:           TAB
 	 * 
+ * More values may be added in the future. + * * @see JavaCore#TAB * @see JavaCore#SPACE + * @see #MIXED * @since 3.0 */ public static final String FORMATTER_TAB_CHAR = JavaCore.PLUGIN_ID + ".formatter.tabulation.char"; //$NON-NLS-1$