本文整理汇总了Java中com.intellij.psi.codeStyle.CodeStyleSettings.clone方法的典型用法代码示例。如果您正苦于以下问题:Java CodeStyleSettings.clone方法的具体用法?Java CodeStyleSettings.clone怎么用?Java CodeStyleSettings.clone使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.psi.codeStyle.CodeStyleSettings
的用法示例。
在下文中一共展示了CodeStyleSettings.clone方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import com.intellij.psi.codeStyle.CodeStyleSettings; //导入方法依赖的package包/类
private void init(@Nullable CodeStyleScheme parentScheme, Element root) {
if (parentScheme == null) {
myCodeStyleSettings = new CodeStyleSettings();
}
else {
CodeStyleSettings parentSettings = parentScheme.getCodeStyleSettings();
myCodeStyleSettings = parentSettings.clone();
while (parentSettings.getParentSettings() != null) {
parentSettings = parentSettings.getParentSettings();
}
myCodeStyleSettings.setParentSettings(parentSettings);
}
if (root != null) {
try {
readExternal(root);
}
catch (InvalidDataException e) {
LOG.error(e);
}
}
}
示例2: apply
import com.intellij.psi.codeStyle.CodeStyleSettings; //导入方法依赖的package包/类
@Override
public void apply() throws ConfigurationException {
if (!myApplyCompleted) {
try {
super.apply();
for (CodeStyleScheme scheme : new ArrayList<CodeStyleScheme>(myModel.getSchemes())) {
final boolean isDefaultModified = CodeStyleSchemesModel.cannotBeModified(scheme) && isSchemeModified(scheme);
if (isDefaultModified) {
CodeStyleScheme newscheme = myModel.createNewScheme(null, scheme);
CodeStyleSettings settingsWillBeModified = scheme.getCodeStyleSettings();
CodeStyleSettings notModifiedSettings = settingsWillBeModified.clone();
((CodeStyleSchemeImpl)scheme).setCodeStyleSettings(notModifiedSettings);
((CodeStyleSchemeImpl)newscheme).setCodeStyleSettings(settingsWillBeModified);
myModel.addScheme(newscheme, false);
if (myModel.getSelectedScheme() == scheme) {
myModel.selectScheme(newscheme, this);
}
}
}
for (CodeStyleConfigurableWrapper panel : myPanels) {
panel.applyPanel();
}
myModel.apply();
EditorFactory.getInstance().refreshAllEditors();
}
finally {
myApplyCompleted = true;
}
}
}
示例3: CodeFragmentCodeStyleSettingsPanel
import com.intellij.psi.codeStyle.CodeStyleSettings; //导入方法依赖的package包/类
public CodeFragmentCodeStyleSettingsPanel(@NotNull CodeStyleSettings settings,
@NotNull CodeStyleSettingsCodeFragmentFilter.CodeStyleSettingsToShow settingsToShow,
@NotNull Language language,
@NotNull SelectedTextFormatter selectedTextFormatter)
{
super(language, settings, settings.clone());
mySettingsToShow = settingsToShow;
mySelectedTextFormatter = selectedTextFormatter;
ensureTabs();
}