new LogConsole api, android logcat toolwindow
[fedora-idea.git] / platform / lang-api / src / com / intellij / diagnostic / logging / IndependentLogFilter.java
blobbf46fff547253e88252c7e7e19209b54c500e57b
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 IndependentLogFilter extends LogFilter {
11 protected IndependentLogFilter(String name) {
12 super(name);
15 public abstract void selectFilter();
17 public abstract boolean isSelected();