本文整理汇总了Java中org.eclipse.jdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE属性的典型用法代码示例。如果您正苦于以下问题:Java DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE属性的具体用法?Java DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE怎么用?Java DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.eclipse.jdt.core.formatter.DefaultCodeFormatterConstants
的用法示例。
在下文中一共展示了DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getTabWidth
/**
* Gets the current tab width.
*
* @param project The project where the source is used, used for project specific options or
* <code>null</code> if the project is unknown and the workspace default should be used
* @return The tab width
*/
public static int getTabWidth(IJavaProject project) {
/*
* If the tab-char is SPACE, FORMATTER_INDENTATION_SIZE is not used
* by the core formatter.
* We piggy back the visual tab length setting in that preference in
* that case.
*/
String key;
if (JavaCore.SPACE.equals(
getCoreOption(project, DefaultCodeFormatterConstants.FORMATTER_TAB_CHAR)))
key = DefaultCodeFormatterConstants.FORMATTER_INDENTATION_SIZE;
else key = DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE;
return getCoreOption(project, key, 4);
}
示例2: getTabWidth
/**
* Gets the current tab width.
*
* @param project
* The project where the source is used, used for project specific options or
* <code>null</code> if the project is unknown and the workspace default should be used
* @return The tab width
*/
public static int getTabWidth(IJavaProject project) {
/*
* If the tab-char is SPACE, FORMATTER_INDENTATION_SIZE is not used
* by the core formatter.
* We piggy back the visual tab length setting in that preference in
* that case.
*/
String key;
if (JavaCore.SPACE.equals(getCoreOption(project, DefaultCodeFormatterConstants.FORMATTER_TAB_CHAR)))
key= DefaultCodeFormatterConstants.FORMATTER_INDENTATION_SIZE;
else
key= DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE;
return getCoreOption(project, key, 4);
}
示例3: getIndentWidth
/**
* Returns the current indent width.
*
* @param project the project where the source is used or, <code>null</code> if the project is
* unknown and the workspace default should be used
* @return the indent width
* @since 3.1
*/
public static int getIndentWidth(IJavaProject project) {
String key;
if (DefaultCodeFormatterConstants.MIXED.equals(
getCoreOption(project, DefaultCodeFormatterConstants.FORMATTER_TAB_CHAR)))
key = DefaultCodeFormatterConstants.FORMATTER_INDENTATION_SIZE;
else key = DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE;
return getCoreOption(project, key, 4);
}
示例4: getIndentWidth
/**
* Returns the current indent width.
*
* @param project
* the project where the source is used or,
* <code>null</code> if the project is unknown and the workspace default should be used
* @return the indent width
* @since 3.1
*/
public static int getIndentWidth(IJavaProject project) {
String key;
if (DefaultCodeFormatterConstants.MIXED.equals(getCoreOption(project, DefaultCodeFormatterConstants.FORMATTER_TAB_CHAR)))
key= DefaultCodeFormatterConstants.FORMATTER_INDENTATION_SIZE;
else
key= DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE;
return getCoreOption(project, key, 4);
}