Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/package.html1
-rw-r--r--org.eclipse.ui.console/src/org/eclipse/ui/console/IConsoleFactory.java27
-rw-r--r--org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java14
-rw-r--r--org.eclipse.ui.console/src/org/eclipse/ui/console/IPatternMatchListener.java32
4 files changed, 43 insertions, 31 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/package.html b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/package.html
index 6192e28d6..1a2b54cc3 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/package.html
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/package.html
@@ -101,7 +101,6 @@ set of breakpoint via the breakpoints extension point.</p>
scoped build prior to launching (i.e. scoped to the projects in the workspace
pertaining to the launch), and searching for errors in the workspace which
may prevent the launch from succeeding (for example, compilation errors).</p>
- <p></p>
<h4>Extensible Watch Expressions</h4>
<p>The debug platform provides an implementation of watch expressions. Debug
models can contribute watch expression delegates if they support watch expressions.
diff --git a/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsoleFactory.java b/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsoleFactory.java
index 331daec90..e3ab8f690 100644
--- a/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsoleFactory.java
+++ b/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsoleFactory.java
@@ -14,13 +14,16 @@
package org.eclipse.ui.console;
/**
- * A console factory extension is responsible for opening a console in the console view.
- * Extensions appear on a menu in the console view, and their <code>openConsole</code>
- * method is called when the action is invoked. Implementations may choose to open a new
- * console or activate an existing console. The extension point used to contribute a
- * console factory is <code>org.eclipse.ui.console.consoleFactories</code>.
+ * A console factory extension is responsible for opening a console in the
+ * console view. Extensions appear on a menu in the console view, and their
+ * <code>openConsole</code> method is called when the action is invoked.
+ * Implementations may choose to open a new console or activate an existing
+ * console. The extension point used to contribute a console factory is
+ * <code>org.eclipse.ui.console.consoleFactories</code>.
* <p>
* Following is an example console factory extension.
+ * </p>
+ *
* <pre>
* &lt;extension point="org.eclipse.ui.console.consoleFactories"&gt;
* &lt;consoleFactory
@@ -30,15 +33,17 @@ package org.eclipse.ui.console;
* &lt;/consoleFactory&gt;
* &lt;/extension&gt;
* </pre>
- * An action appears in the console view's 'Open Console' drop-down menu with the
- * corresponding <code>label</code> and optional <code>icon</code>. When the action
- * is invoked, the specified <code>class</code> is instantiated and called to
- * open a console, via the method <code>openConsole()</code>.
+ * <p>
+ * An action appears in the console view's 'Open Console' drop-down menu with
+ * the corresponding <code>label</code> and optional <code>icon</code>. When the
+ * action is invoked, the specified <code>class</code> is instantiated and
+ * called to open a console, via the method <code>openConsole()</code>.
* </p>
* <p>
- * Clients providing console factory extensions are intended to implement
- * this interface.
+ * Clients providing console factory extensions are intended to implement this
+ * interface.
* </p>
+ *
* @since 3.1
*/
public interface IConsoleFactory {
diff --git a/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java b/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java
index dde64f5c3..7eda90542 100644
--- a/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java
+++ b/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java
@@ -18,15 +18,18 @@ import org.eclipse.ui.part.IPageBookViewPage;
/**
* A console page participant is notified of page lifecycle events such as
- * creation, activation, deactivation and disposal. A page participant can
- * also provide adapters for a page. Participants are contributed via the
+ * creation, activation, deactivation and disposal. A page participant can also
+ * provide adapters for a page. Participants are contributed via the
* <code>org.eclispe.ui.console.consolePageParticipants</code> extension point.
* <p>
- * Participant behavior is implementation dependent. For example, a page participant
- * could add actions to a console's toolbar by accessing a its page's action bars.
+ * Participant behavior is implementation dependent. For example, a page
+ * participant could add actions to a console's toolbar by accessing a its
+ * page's action bars.
* </p>
* <p>
* Following is an example extension definition.
+ * </p>
+ *
* <pre>
* &lt;extension point=&quot;org.eclipse.ui.console.consolePageParticipants&quot;&gt;
* &lt;consolePageParticipant
@@ -35,7 +38,7 @@ import org.eclipse.ui.part.IPageBookViewPage;
* &lt;/consolePageParticipant&gt;
* &lt;/extension&gt;
* </pre>
- * </p>
+ *
* The example page participant is contributed to all console pages. An optional
* <code>enablement</code> attribute may be specified to control which consoles
* a page participant is applicable to.
@@ -43,6 +46,7 @@ import org.eclipse.ui.part.IPageBookViewPage;
* Clients contributing console page participant extensions are intended to
* implement this interface.
* </p>
+ *
* @since 3.1
*/
public interface IConsolePageParticipant extends IAdaptable {
diff --git a/org.eclipse.ui.console/src/org/eclipse/ui/console/IPatternMatchListener.java b/org.eclipse.ui.console/src/org/eclipse/ui/console/IPatternMatchListener.java
index f938f15b3..cc8e31b6f 100644
--- a/org.eclipse.ui.console/src/org/eclipse/ui/console/IPatternMatchListener.java
+++ b/org.eclipse.ui.console/src/org/eclipse/ui/console/IPatternMatchListener.java
@@ -14,14 +14,15 @@
package org.eclipse.ui.console;
/**
- * A pattern match listener is registered with a <code>TextConsole</code>,
- * and is notified when its pattern has been matched to contents in
- * that console. A pattern match listener can be registered with a console
- * programmatically or via the <code>consolePatternMatchListeners</code> extension
- * point.
+ * A pattern match listener is registered with a <code>TextConsole</code>, and
+ * is notified when its pattern has been matched to contents in that console. A
+ * pattern match listener can be registered with a console programmatically or
+ * via the <code>consolePatternMatchListeners</code> extension point.
* <p>
* Following is an example console pattern match listener extension definition.
- * </pre>
+ * </p>
+ *
+ * <pre>
* &lt;extension point="org.eclipse.ui.console.consolePatternMatchListeners"&gt;
* &lt;consolePatternMatchListener
* id="com.example.ConsolePatternMatcher"
@@ -30,28 +31,31 @@ package org.eclipse.ui.console;
* &lt;/consolePatternMatchListener&gt;
* &lt;/extension&gt;
* </pre>
+ *
* Attributes are specified as follows:
* <ul>
* <li><code>id</code> - a unique identifier for the pattern match listener</li>
* <li><code>regex</code> - regular expression to match</li>
* <li><code>class</code> - fully qualified name of the Java class implementing
- * <code>org.eclipse.ui.console.IPatternMatchListenerDelegate</code></li>
+ * <code>org.eclipse.ui.console.IPatternMatchListenerDelegate</code></li>
* </ul>
- * </p>
* <p>
- * Optionally a <code>qualifier</code> attribute may be specified to improve performance
- * of regular expression matching. A qualifier specifies a simple regular expression used to
- * qualify lines for the search. Lines that do not contain the qualifier are not considered.
+ * Optionally a <code>qualifier</code> attribute may be specified to improve
+ * performance of regular expression matching. A qualifier specifies a simple
+ * regular expression used to qualify lines for the search. Lines that do not
+ * contain the qualifier are not considered.
* </p>
* <p>
* Optionally an <code>enablement</code> expression may be provided to specify
* which console(s) a pattern matcher should be contributed to.
* </p>
* <p>
- * Clients may implement this interface directly if registering a pattern match listener with
- * a text console programmatically. Clients contributing a pattern match listener via an
- * extension implement <code>IPatternMatchListenerDelegate</code> instead.
+ * Clients may implement this interface directly if registering a pattern match
+ * listener with a text console programmatically. Clients contributing a pattern
+ * match listener via an extension implement
+ * <code>IPatternMatchListenerDelegate</code> instead.
* </p>
+ *
* @see org.eclipse.ui.console.TextConsole
* @since 3.1
*/

Back to the top