combobox instead of buttons on the LogConsole panel
[fedora-idea.git] / platform / lang-impl / src / com / intellij / diagnostic / logging / StandartLogFilter.java
blob0181d728c2aad890fb3bd1a83a2f08044aed4aba
1 package com.intellij.diagnostic.logging;
3 /**
4 * Created by IntelliJ IDEA.
5 * User: Eugene.Kudelevsky
6 * Date: Sep 11, 2009
7 * Time: 2:34:25 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public abstract class StandartLogFilter extends LogFilter {
11 protected StandartLogFilter(String name) {
12 super(name);
15 public abstract void selectFilter(LogConsolePreferences preferences);
17 public abstract boolean isSelected(LogConsolePreferences preferences);