本文整理汇总了Java中com.intellij.formatting.FormattingMode类的典型用法代码示例。如果您正苦于以下问题:Java FormattingMode类的具体用法?Java FormattingMode怎么用?Java FormattingMode使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FormattingMode类属于com.intellij.formatting包,在下文中一共展示了FormattingMode类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getCurrentFormattingMode
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
/** Uses same fallback as {@link CodeStyleManager#getCurrentFormattingMode}. */
@Override
public FormattingMode getCurrentFormattingMode() {
if (delegate instanceof FormattingModeAwareIndentAdjuster) {
return ((FormattingModeAwareIndentAdjuster) delegate).getCurrentFormattingMode();
}
return FormattingMode.REFORMAT;
}
开发者ID:bazelbuild,项目名称:intellij,代码行数:9,代码来源:DelegatingCodeStyleManagerSdkCompatAdapter.java
示例2: adjustLineIndent
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
@Override
public int adjustLineIndent(
@NotNull final Document document, final int offset, FormattingMode mode)
throws IncorrectOperationException {
if (delegate instanceof FormattingModeAwareIndentAdjuster) {
return ((FormattingModeAwareIndentAdjuster) delegate)
.adjustLineIndent(document, offset, mode);
}
return offset;
}
开发者ID:bazelbuild,项目名称:intellij,代码行数:11,代码来源:DelegatingCodeStyleManagerSdkCompatAdapter.java
示例3: createModel
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
@NotNull
@Override
public FormattingModel createModel(@NotNull PsiElement element,
@NotNull CodeStyleSettings settings,
@NotNull FormattingMode mode) {
final BuckBlock block =
new BuckBlock(null, element.getNode(), settings, null, Indent.getNoneIndent(), null);
return FormattingModelProvider.createFormattingModelForPsiFile(
element.getContainingFile(),
block,
settings);
}
开发者ID:wangyanxing,项目名称:Buck-IntelliJ-Plugin,代码行数:13,代码来源:BuckFormattingModelBuilder.java
示例4: adjustLineIndent
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
@Override
public int adjustLineIndent(@NotNull Document document, int offset, FormattingMode formattingMode) {
if (original instanceof FormattingModeAwareIndentAdjuster) {
return ((FormattingModeAwareIndentAdjuster) original).adjustLineIndent(document, offset, formattingMode);
} else {
return offset;
}
}
开发者ID:krasa,项目名称:EclipseCodeFormatter,代码行数:9,代码来源:ManualCodeStyleManagerDelegator.java
示例5: getCurrentFormattingMode
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
@Override
public FormattingMode getCurrentFormattingMode() {
if (original instanceof FormattingModeAwareIndentAdjuster) {
return ((FormattingModeAwareIndentAdjuster) original).getCurrentFormattingMode();
} else {
return FormattingMode.REFORMAT;
}
}
开发者ID:krasa,项目名称:EclipseCodeFormatter,代码行数:9,代码来源:ManualCodeStyleManagerDelegator.java
示例6: createModel
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
@Override
public FormattingModel createModel(
PsiElement element, CodeStyleSettings settings, FormattingMode mode) {
final BuckBlock block =
new BuckBlock(element.getNode(), settings, null, Indent.getNoneIndent(), null);
return FormattingModelProvider.createFormattingModelForPsiFile(
element.getContainingFile(), block, settings);
}
开发者ID:facebook,项目名称:buck,代码行数:9,代码来源:BuckFormattingModelBuilder.java
示例7: getCurrentFormattingMode
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
/**
* Retrieves the current formatting mode.
*
* @param project The current project used to obtain {@code CodeStyleManager} instance.
* @return The current formatting mode.
* @see FormattingMode
*/
public static FormattingMode getCurrentFormattingMode(@Nonnull Project project) {
if (!project.isDisposed()) {
CodeStyleManager instance = getInstance(project);
if (instance instanceof FormattingModeAwareIndentAdjuster) {
return ((FormattingModeAwareIndentAdjuster)instance).getCurrentFormattingMode();
}
}
return FormattingMode.REFORMAT;
}
开发者ID:consulo,项目名称:consulo,代码行数:17,代码来源:CodeStyleManager.java
示例8: run
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
public void run() {
int lineStart = myDocument.getLineStartOffset(myLine);
CommandProcessor.getInstance().runUndoTransparentAction(() -> ApplicationManager.getApplication().runWriteAction(() -> {
CodeStyleManager codeStyleManager = CodeStyleManager.getInstance(myProject);
if (codeStyleManager instanceof FormattingModeAwareIndentAdjuster) {
((FormattingModeAwareIndentAdjuster)codeStyleManager).adjustLineIndent(myDocument, lineStart, FormattingMode.ADJUST_INDENT_ON_ENTER);
}
}));
}
开发者ID:consulo,项目名称:consulo,代码行数:10,代码来源:FormatterBasedIndentAdjuster.java
示例9: CodeStyleManagerRunnable
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
CodeStyleManagerRunnable(CodeStyleManagerImpl codeStyleManager, @NotNull FormattingMode mode) {
myCodeStyleManager = codeStyleManager;
myMode = mode;
}
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:CodeStyleManagerRunnable.java
示例10: PyBlockContext
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
public PyBlockContext(CodeStyleSettings settings, SpacingBuilder builder, FormattingMode mode) {
mySettings = settings.getCommonSettings(PythonLanguage.getInstance());
myPySettings = settings.getCustomSettings(PyCodeStyleSettings.class);
mySpacingBuilder = builder;
myMode = mode;
}
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:7,代码来源:PyBlockContext.java
示例11: getMode
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
public FormattingMode getMode() {
return myMode;
}
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:PyBlockContext.java
示例12: DylanFormattingBlockContext
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
public DylanFormattingBlockContext(CodeStyleSettings settings, SpacingBuilder builder, FormattingMode mode) {
mySettings = settings.getCommonSettings(DylanLanguage.INSTANCE);
myDylanSettings = settings.getCustomSettings(DylanCodeStyleSettings.class);
mySpacingBuilder = builder;
myMode = mode;
}
开发者ID:dylan-foundry,项目名称:DeftIDEA,代码行数:7,代码来源:DylanFormattingBlockContext.java
示例13: adjustLineIndent
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
/**
* Adjust line indent at document offset using {@code mode}.
*
* @param document The document to adjust line indent in.
* @param offset The offset in the document.
* @param mode The mode: {@link FormattingMode#ADJUST_INDENT} or {@link FormattingMode#ADJUST_INDENT_ON_ENTER}
* @return Adjusted offset.
*/
int adjustLineIndent(@Nonnull final Document document, final int offset, FormattingMode mode);
开发者ID:consulo,项目名称:consulo,代码行数:10,代码来源:FormattingModeAwareIndentAdjuster.java
示例14: getCurrentFormattingMode
import com.intellij.formatting.FormattingMode; //导入依赖的package包/类
FormattingMode getCurrentFormattingMode();
开发者ID:consulo,项目名称:consulo,代码行数:2,代码来源:FormattingModeAwareIndentAdjuster.java
注:本文中的com.intellij.formatting.FormattingMode类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论