本文整理汇总了Java中com.intellij.application.options.IndentOptionsEditor类的典型用法代码示例。如果您正苦于以下问题:Java IndentOptionsEditor类的具体用法?Java IndentOptionsEditor怎么用?Java IndentOptionsEditor使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
IndentOptionsEditor类属于com.intellij.application.options包,在下文中一共展示了IndentOptionsEditor类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Nullable
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new IndentOptionsEditor() {
protected void addComponents() {
super.addComponents();
myCbUseTab.setVisible(false);
myTabSizeField.setVisible(false);
myTabSizeLabel.setVisible(false);
}
};
}
开发者ID:jimkyndemeyer,项目名称:js-graphql-intellij-plugin,代码行数:13,代码来源:JSGraphQLLanguageCodeStyleSettingsProvider.java
示例2: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new SmartIndentOptionsEditor();
}
示例3: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new SmartIndentOptionsEditor();
}
示例4: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new SmartIndentOptionsEditor();
}
示例5: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Nullable
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new SmartIndentOptionsEditor();
}
开发者ID:protostuff,项目名称:protobuf-jetbrains-plugin,代码行数:6,代码来源:ProtoLanguageCodeStyleSettingsProvider.java
示例6: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Nullable
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new IndentOptionsEditor();
}
示例7: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
public IndentOptionsEditor getIndentOptionsEditor()
{
return new IndentOptionsEditor();
}
示例8: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new JavaIndentOptionsEditor();
}
示例9: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Nullable
public IndentOptionsEditor getIndentOptionsEditor() {
return null;
}
示例10: OtherFileTypesCodeStyleOptionsForm
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
protected OtherFileTypesCodeStyleOptionsForm(@NotNull CodeStyleSettings settings) {
super(settings);
myIndentOptionsEditor = new IndentOptionsEditor();
myIndentOptionsPanel.add(myIndentOptionsEditor.createPanel(), BorderLayout.CENTER);
}
示例11: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Nullable
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new SmartIndentOptionsEditor();
}
示例12: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Nullable
public IndentOptionsEditor getIndentOptionsEditor() {
return new IndentOptionsEditor();
}
示例13: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new AvroIdlIndentOptionsEditor();
}
示例14: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new HaskellIndentOptionsEditor();
}
开发者ID:carymrobbins,项目名称:intellij-haskforce,代码行数:5,代码来源:HaskellLanguageCodeStyleSettingsProvider.java
示例15: getIndentOptionsEditor
import com.intellij.application.options.IndentOptionsEditor; //导入依赖的package包/类
@Override
public IndentOptionsEditor getIndentOptionsEditor()
{
return new SmartIndentOptionsEditor();
}