blob: 239b7d08269b64039dd79893b671441a4098e743 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.logging;
import java.io.File;
public interface IQ7Monitor {
void log(String message, Throwable e);
void log(String message);
String getId();
String getPrefix();
void close();
void putChild(IQ7Monitor result);
String getFile();
File getRootFolder();
public static interface IQ7LogListener {
void added(String message);
}
public void addListener(IQ7LogListener listener);
public void removeListener(IQ7LogListener listener);
}