Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2003-03-24 22:47:41 +0000
committerDarin Swanson2003-03-24 22:47:41 +0000
commit2cb2baa0e5af05f6202065732a0b655f3132d6b3 (patch)
tree7b48baa38f1b1b7755592cdc26ce4f127d1de116 /org.eclipse.debug.ui
parent782fff6a66d61dd98c49454b8b9a5eb25751bdb5 (diff)
downloadeclipse.platform.debug-2cb2baa0e5af05f6202065732a0b655f3132d6b3.tar.gz
eclipse.platform.debug-2cb2baa0e5af05f6202065732a0b655f3132d6b3.tar.xz
eclipse.platform.debug-2cb2baa0e5af05f6202065732a0b655f3132d6b3.zip
chkpii errors
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/package.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/package.html b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/package.html
index 45cfc3436..1e27d958f 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/package.html
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/package.html
@@ -16,31 +16,31 @@
text, parsing output, and creating hyperlinks in the debug console.</p>
<h3>Coloring Console Output</h3>
<p>A process may have standard input, output, and error streams associated with,
- as defined by <font face="Courier New, Courier, mono">org.eclipse.debug.core.model.IProcess</font>
- and <font face="Courier New, Courier, mono">org.eclipse.debug.core.model.IStreamsProxy</font>.
+ as defined by <b>org.eclipse.debug.core.model.IProcess</b>
+ and <b>org.eclipse.debug.core.model.IStreamsProxy</b>.
When a process is registered with the debug plug-in, a document is created to
display the output of that process, and to provide input to the process via
the keyboard. A console document is displayed in the Console View. By default,
the output, error, and input streams are rendered in colors specified by user
preferences.</p>
-<p>A client can specialize coloring for a process's streams by defining an <font face="Courier New, Courier, mono">IConsoleColorProvider</font>
- extension (using the <font face="Courier New, Courier, mono">org.eclipse.debug.ui.consoleColorProviders</font>
+<p>A client can specialize coloring for a process's streams by defining an <b>IConsoleColorProvider</b>
+ extension (using the <b>org.eclipse.debug.ui.consoleColorProviders</b>
extension point). A console color provider is defined for a <i>type</i> of process.
A process type is defined by the creator of a process, and is specified on an
- <font face="Courier New, Courier, mono">IProcess</font> via the <font face="Courier New, Courier, mono">ATTR_PROCESS_TYPE</font>
+ <b>IProcess</b> via the <b>ATTR_PROCESS_TYPE</b>
attribute. When a process is registered with the debug plug-in, a console color
provider associated with the process type is instantiated, and connected to
- the process (<font face="Courier New, Courier, mono">IProcess</font>) and a
- console (<font face="Courier New, Courier, mono">IConsole</font>). The console
- color provider then connects its streams to the console (<font face="Courier New, Courier, mono">IConsole</font>),
- via the console methods <font face="Courier New, Courier, mono">connect(IStreamsProxy)</font>
- and <font face="Courier New, Courier, mono">connect(IStreamMonitor, String)</font>.
+ the process (<b>IProcess</b>) and a
+ console (<b>IConsole</b>). The console
+ color provider then connects its streams to the console (<b>IConsole</b>),
+ via the console methods <b>connect(IStreamsProxy)</b>
+ and <b>connect(IStreamMonitor, String)</b>.
The color provider will then be consulted to provide a color when the console
needs to render output from a stream.</p>
<h3>Parsing Console Output</h3>
<p>A client can be notified of output appended to a process's console document,
- by defining an <font face="Courier New, Courier, mono">IConsoleLineTracker</font>
- extension (using the <font face="Courier New, Courier, mono">org.eclipse.debug.ui.consoleLineTrackers</font>
+ by defining an <b>IConsoleLineTracker</b>
+ extension (using the <b>org.eclipse.debug.ui.consoleLineTrackers</b>
extension point). A console line tracker is defined for a <i>type</i> of process.
When a process is registered with the debug plug-in, a console document is created
for that process, and output is appended to that document. As output is written

Back to the top