当前位置: 首页>>代码示例>>Java>>正文


Java DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE属性代码示例

本文整理汇总了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);
}
 
开发者ID:eclipse,项目名称:che,代码行数:22,代码来源:CodeFormatterUtil.java

示例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);
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:23,代码来源:CodeFormatterUtil.java

示例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);
}
 
开发者ID:eclipse,项目名称:che,代码行数:17,代码来源:CodeFormatterUtil.java

示例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);
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:18,代码来源:CodeFormatterUtil.java


注:本文中的org.eclipse.jdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。