blob: b4e11dd2557994f2cbf3d789aa793ab926e93ff8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.ui.console;
import org.eclipse.debug.core.model.IProcess;
import org.eclipse.debug.core.model.IStreamMonitor;
import org.eclipse.debug.core.model.IStreamsProxy;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
import org.eclipse.ui.console.IHyperlink;
import org.eclipse.ui.console.IPatternMatchListener;
/**
* A console that displays output and writes input to a process. Implementors of
* <code>IConsoleColorProvider</code> should connect streams to a console
* document when connected to.
* <p>
* Clients are <b>not</b> intended to implement this interface.
* </p>
* @see org.eclipse.debug.ui.console.IConsoleColorProvider
* @since 2.1
*/
public interface IConsole {
/**
* Connects this console to the given streams proxy. This associates the
* standard in, out, and error streams with the console. Keyboard input will
* be written to the given proxy.
*
* @param streamsProxy
*/
public void connect(IStreamsProxy streamsProxy);
/**
* Connects this console to the given stream monitor, uniquely identified by
* the given identifier. This allows for more than the standard (in, out,
* error) streams to be connected to the console.
*
* @param streamMonitor
* @param streamIdentifer
*/
public void connect(IStreamMonitor streamMonitor, String streamIdentifer);
/**
* Adds the given hyperlink to this console. The link will be notified when
* entered, exited, and activated.
* <p>
* If the link's region (offset/length) is within the console's document
* current bounds, it is added immediately. Otherwise, the link is added
* when the console's document grows to contain the link's region.
* </p>
* @param link the hyperlink to add
* @param offset the character offset within the console document where the
* text assoicated with the hyperlink begins
* @param length the length of the associated hyperlink text
* @deprecated replaced with addLink(IHyperlink link, int offset, int length)
*/
public void addLink(IConsoleHyperlink link, int offset, int length);
/**
* Adds the given hyperlink to this console. The link will be notified when
* entered, exited, and activated.
* <p>
* If the link's region (offset/length) is within the console's document
* current bounds, it is added immediately. Otherwise, the link is added
* when the console's document grows to contain the link's region.
* </p>
* @param link the hyperlink to add
* @param offset the character offset within the console document where the
* text assoicated with the hyperlink begins
* @param length the length of the associated hyperlink text
* @ since 3.1
*/
public void addLink(IHyperlink link, int offset, int length);
/**
* Returns the region of text associated with the given hyperlink, or
* <code>null</code> if the given hyperlink is not contained in this
* console.
*
* @param link a console hyperlink
* @return region of text associated with the hyperlink, or <code>null</code>
* @deprecated replaced with getRegion(IHyperlink link) instead
*/
public IRegion getRegion(IConsoleHyperlink link);
/**
* Returns the region of text associated with the given hyperlink, or
* <code>null</code> if the given hyperlink is not contained in this
* console.
*
* @param link a console hyperlink
* @return region of text associated with the hyperlink, or <code>null</code>
* @since 3.1
*/
public IRegion getRegion(IHyperlink link);
/**
* Returns the document associated with this console.
*
* @return document
*/
public IDocument getDocument();
/**
* Returns the process associated with this console.
*
* @return the process associated with this console
*/
public IProcess getProcess();
public void addPatternMatchListener(IPatternMatchListener matchHandler);
public void removePatternMatchListener(IPatternMatchListener matchHandler);
}