本文整理汇总了Java中com.intellij.execution.filters.CompositeFilter类的典型用法代码示例。如果您正苦于以下问题:Java CompositeFilter类的具体用法?Java CompositeFilter怎么用?Java CompositeFilter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
CompositeFilter类属于com.intellij.execution.filters包,在下文中一共展示了CompositeFilter类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: SMTRunnerConsoleProperties
import com.intellij.execution.filters.CompositeFilter; //导入依赖的package包/类
public SMTRunnerConsoleProperties(@NotNull Project project,
@NotNull RunProfile config,
@NotNull String testFrameworkName,
@NotNull Executor executor) {
super(getStorage(testFrameworkName), project, executor);
myConfiguration = config;
myTestFrameworkName = testFrameworkName;
myCustomFilter = new CompositeFilter(project);
}
示例2: SMTRunnerConsoleProperties
import com.intellij.execution.filters.CompositeFilter; //导入依赖的package包/类
/**
* @param config
* @param testFrameworkName Prefix for storage which keeps runner settings. E.g. "RubyTestUnit"
* @param executor
*/
public SMTRunnerConsoleProperties(@NotNull final RunConfiguration config,
@NotNull final String testFrameworkName,
@NotNull final Executor executor)
{
super(new Storage.PropertiesComponentStorage(testFrameworkName + "Support.", PropertiesComponent.getInstance()),
config.getProject(),
executor);
myConfiguration = config;
myCustomFilter = new CompositeFilter(config.getProject());
}
示例3: SMTRunnerConsoleProperties
import com.intellij.execution.filters.CompositeFilter; //导入依赖的package包/类
public SMTRunnerConsoleProperties(@Nonnull Project project,
@Nonnull RunProfile config,
@Nonnull String testFrameworkName,
@Nonnull Executor executor) {
super(getStorage(testFrameworkName), project, executor);
myConfiguration = config;
myTestFrameworkName = testFrameworkName;
myCustomFilter = new CompositeFilter(project);
}