LocalHistory: close storage on shutdown
[fedora-idea.git] / smRunner / src / com / intellij / execution / testframework / sm / runner / ui / TestProxySelectionChangedListener.java
blob1af7670d0a4ad2cbae8f3b5b5ebde5429487bdde
1 package com.intellij.execution.testframework.sm.runner.ui;
3 import org.jetbrains.annotations.NotNull;
4 import org.jetbrains.annotations.Nullable;
5 import com.intellij.execution.testframework.sm.runner.SMTestProxy;
7 /**
8 * @author Roman Chernyatchik
9 */
10 public interface TestProxySelectionChangedListener {
11 void onChangeSelection(@Nullable SMTestProxy selectedTestProxy,
12 @NotNull Object sender,
13 boolean requestFocus);