use of com.intellij.javascript.karma.scope.KarmaScopeKind in project intellij-plugins by JetBrains.
the class KarmaRunConfigurationEditor method setScopeKind.
private void setScopeKind(@NotNull KarmaScopeKind scopeKind) {
KarmaScopeKind selectedScopeKind = getScopeKind();
if (selectedScopeKind != scopeKind) {
JRadioButton radioButton = myRadioButtonMap.get(scopeKind);
radioButton.setSelected(true);
}
KarmaScopeView view = getScopeKindView(scopeKind);
setCenterBorderLayoutComponent(mySelectedScopeKindPanel, view.getComponent());
}
Aggregations