import tests: multiple selection according to the stored configuration (IDEA-155464)

This commit is contained in:
Anna.Kozlova
2016-05-02 15:21:04 +02:00
parent 54cc2c26dc
commit 310f81efce
4 changed files with 8 additions and 3 deletions
@@ -60,7 +60,7 @@ public abstract class JavaAwareTestConsoleProperties<T extends ModuleBasedConfig
}
@Override
protected int getSelectionMode() {
public int getSelectionMode() {
return TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION;
}
@@ -120,4 +120,9 @@ public class ImportedTestConsoleProperties extends SMTRunnerConsoleProperties im
myProperties.appendAdditionalActions(actionGroup, parent, this);
}
}
@Override
public int getSelectionMode() {
return myProperties != null ? myProperties.getSelectionMode() : super.getSelectionMode();
}
}
@@ -223,7 +223,7 @@ public abstract class TestConsoleProperties extends StoringPropertyContainer imp
}
@JdkConstants.TreeSelectionMode
protected int getSelectionMode() {
public int getSelectionMode() {
return TreeSelectionModel.SINGLE_TREE_SELECTION;
}
@@ -44,7 +44,7 @@ public class GradleConsoleProperties extends SMTRunnerConsoleProperties {
}
@Override
protected int getSelectionMode() {
public int getSelectionMode() {
return TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION;
}
}