mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
import tests: multiple selection according to the stored configuration (IDEA-155464)
This commit is contained in:
+1
-1
@@ -60,7 +60,7 @@ public abstract class JavaAwareTestConsoleProperties<T extends ModuleBasedConfig
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getSelectionMode() {
|
||||
public int getSelectionMode() {
|
||||
return TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION;
|
||||
}
|
||||
|
||||
|
||||
+5
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -223,7 +223,7 @@ public abstract class TestConsoleProperties extends StoringPropertyContainer imp
|
||||
}
|
||||
|
||||
@JdkConstants.TreeSelectionMode
|
||||
protected int getSelectionMode() {
|
||||
public int getSelectionMode() {
|
||||
return TreeSelectionModel.SINGLE_TREE_SELECTION;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -44,7 +44,7 @@ public class GradleConsoleProperties extends SMTRunnerConsoleProperties {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getSelectionMode() {
|
||||
public int getSelectionMode() {
|
||||
return TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user