extend API of LogConsole
[fedora-idea.git] / platform / lang-impl / src / com / intellij / diagnostic / logging / LogConsoleImpl.java
blobd06229b2ac0867677116e65647f63816f3df840f
1 package com.intellij.diagnostic.logging;
3 import com.intellij.openapi.project.Project;
4 import org.jetbrains.annotations.Nullable;
6 import java.io.File;
8 /**
9 * User: anna
10 * Date: Apr 19, 2005
12 public abstract class LogConsoleImpl extends LogConsoleBase {
13 private final String myPath;
15 public LogConsoleImpl(Project project, File file, long skippedContents, String title, final boolean buildInActions) {
16 super(project, file, skippedContents, title, buildInActions);
17 myPath = file.getAbsolutePath();
21 @Nullable
22 public String getTooltip() {
23 return myPath;
26 public String getPath() {
27 return myPath;