Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2005-05-16 16:12:42 +0000
committerDarin Wright2005-05-16 16:12:42 +0000
commit95fa210e3ecd542d010d6ab5fbed301f94fa9bad (patch)
tree1bfac48ab4c86598e3b2b22d30e56b4b7b55f731 /org.eclipse.ui.console/schema
parent9252647fb54d030cd7b480b83b63fdf15287cadc (diff)
downloadeclipse.platform.debug-95fa210e3ecd542d010d6ab5fbed301f94fa9bad.tar.gz
eclipse.platform.debug-95fa210e3ecd542d010d6ab5fbed301f94fa9bad.tar.xz
eclipse.platform.debug-95fa210e3ecd542d010d6ab5fbed301f94fa9bad.zip
Bug 95199 - consoleFactories extension point doesn't specify implementation reqs
Diffstat (limited to 'org.eclipse.ui.console/schema')
-rw-r--r--org.eclipse.ui.console/schema/consoleFactories.exsd31
-rw-r--r--org.eclipse.ui.console/schema/consolePageParticipants.exsd37
-rw-r--r--org.eclipse.ui.console/schema/consolePatternMatchListeners.exsd39
3 files changed, 58 insertions, 49 deletions
diff --git a/org.eclipse.ui.console/schema/consoleFactories.exsd b/org.eclipse.ui.console/schema/consoleFactories.exsd
index a0b8904e3..c676dc91d 100644
--- a/org.eclipse.ui.console/schema/consoleFactories.exsd
+++ b/org.eclipse.ui.console/schema/consoleFactories.exsd
@@ -63,6 +63,9 @@
<documentation>
class implementing &lt;code&gt;org.eclipse.ui.console.IConsoleFactory&lt;/code&gt; that will be called when the associated action is invoked
</documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.ui.console.IConsoleFactory"/>
+ </appInfo>
</annotation>
</attribute>
</complexType>
@@ -82,16 +85,16 @@
<meta.section type="examples"/>
</appInfo>
<documentation>
- The following is an example of a console factory extension point:
-&lt;pre&gt;
-&lt;extension point=&quot;org.eclipse.ui.console.consoleFactories&quot;&gt;
- &lt;consoleFactory
- label=&quot;Command Console&quot;
- class=&quot;com.example.CommandConsoleFactory&quot;
- icon=&quot;icons/cmd_console.gif&quot;&gt;
- &lt;/consoleFactory&gt;
-&lt;/extension&gt;
-&lt;/pre&gt;
+ The following is an example of a console factory extension point:
+&lt;pre&gt;
+&lt;extension point=&quot;org.eclipse.ui.console.consoleFactories&quot;&gt;
+ &lt;consoleFactory
+ label=&quot;Command Console&quot;
+ class=&quot;com.example.CommandConsoleFactory&quot;
+ icon=&quot;icons/cmd_console.gif&quot;&gt;
+ &lt;/consoleFactory&gt;
+&lt;/extension&gt;
+&lt;/pre&gt;
This extension will cause an entry to appear in the console view&apos;s &lt;b&gt;Open Console&lt;/b&gt; drop-down menu labelled &lt;b&gt;Command Console&lt;/b&gt; with the specified icon. When the action is invoked by a user, the method &lt;b&gt;openConsole()&lt;/b&gt; on the class &lt;b&gt;com.example.CommandConsoleFactory&lt;/b&gt; will be called. The factory can the decide to create a new console or activate an existing console.
</documentation>
</annotation>
@@ -119,10 +122,10 @@ This extension will cause an entry to appear in the console view&apos;s &lt;b&gt
<meta.section type="copyright"/>
</appInfo>
<documentation>
- Copyright (c) 2004, 2005 IBM Corporation and others.&lt;br&gt;
-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
+ Copyright (c) 2004, 2005 IBM Corporation and others.&lt;br&gt;
+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
&lt;a href=&quot;http://www.eclipse.org/legal/epl-v10.html&quot;&gt;http://www.eclipse.org/legal/epl-v10.html&lt;/a&gt;
</documentation>
</annotation>
diff --git a/org.eclipse.ui.console/schema/consolePageParticipants.exsd b/org.eclipse.ui.console/schema/consolePageParticipants.exsd
index b3e191e7e..831bb9457 100644
--- a/org.eclipse.ui.console/schema/consolePageParticipants.exsd
+++ b/org.eclipse.ui.console/schema/consolePageParticipants.exsd
@@ -58,6 +58,9 @@
<documentation>
specifies a fully qualified name of a Java class that implements &lt;code&gt;IConsolePageParticipant&lt;/code&gt;
</documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.ui.console.IConsolePageParticipant"/>
+ </appInfo>
</annotation>
</attribute>
</complexType>
@@ -77,19 +80,19 @@
<meta.section type="examples"/>
</appInfo>
<documentation>
- The following is an example of a console page participant extension point:
-&lt;pre&gt;
- &lt;extension
- point=&quot;org.eclipse.ui.console.consolePageParticipant&quot;&gt;
- &lt;consolePageParticipant
- class=&quot;com.example.ExamplePageParticipant&quot;
- id=&quot;com.example.ExamplePageParticipant&quot;&gt;
- &lt;enablement&gt;
- &lt;instanceof value=&quot;com.example.ExampleConsole&quot;/&gt;
- &lt;/enablement&gt;
- &lt;/consolePageParticipant&gt;
- &lt;/extension&gt;
-&lt;/pre&gt;
+ The following is an example of a console page participant extension point:
+&lt;pre&gt;
+ &lt;extension
+ point=&quot;org.eclipse.ui.console.consolePageParticipant&quot;&gt;
+ &lt;consolePageParticipant
+ class=&quot;com.example.ExamplePageParticipant&quot;
+ id=&quot;com.example.ExamplePageParticipant&quot;&gt;
+ &lt;enablement&gt;
+ &lt;instanceof value=&quot;com.example.ExampleConsole&quot;/&gt;
+ &lt;/enablement&gt;
+ &lt;/consolePageParticipant&gt;
+ &lt;/extension&gt;
+&lt;/pre&gt;
In the above example, the contributed console page participant will be used for all consoles of type &quot;com.example.ExampleConsole.&quot;
</documentation>
</annotation>
@@ -108,10 +111,10 @@ In the above example, the contributed console page participant will be used for
<meta.section type="copyright"/>
</appInfo>
<documentation>
- Copyright (c) 2000, 2005 IBM Corporation and others.&lt;br&gt;
-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
+ Copyright (c) 2000, 2005 IBM Corporation and others.&lt;br&gt;
+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
&lt;a href=&quot;http://www.eclipse.org/legal/epl-v10.html&quot;&gt;http://www.eclipse.org/legal/epl-v10.html&lt;/a&gt;
</documentation>
</annotation>
diff --git a/org.eclipse.ui.console/schema/consolePatternMatchListeners.exsd b/org.eclipse.ui.console/schema/consolePatternMatchListeners.exsd
index 2d89aee39..522ad1a80 100644
--- a/org.eclipse.ui.console/schema/consolePatternMatchListeners.exsd
+++ b/org.eclipse.ui.console/schema/consolePatternMatchListeners.exsd
@@ -58,6 +58,9 @@
<documentation>
specifies a fully qualified name of a Java class that implements &lt;code&gt;IPatternMatchListenerDelegate&lt;/code&gt;
</documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.ui.console.IPatternMatchListenerDelegate"/>
+ </appInfo>
</annotation>
</attribute>
<attribute name="regex" type="string" use="required">
@@ -98,20 +101,20 @@
<meta.section type="examples"/>
</appInfo>
<documentation>
- The following is an example of a console pattern match listener extension point:
-&lt;pre&gt;
- &lt;extension
- point=&quot;org.eclipse.ui.console.consolePatternMatchListener&quot;&gt;
- &lt;consolePatternMatchListener
- class=&quot;com.example.ExampleConsolePatternMatcher&quot;
- id=&quot;com.example.ExampleConsolePatternMatcher&quot;
- regex=&quot;.*foo.*&quot;&gt;
- &lt;enablement&gt;
- &lt;test property=&quot;org.eclipse.ui.console.consoleTypeTest&quot; value=&quot;exampleConsole&quot;/&gt;
- &lt;/enablement&gt;
- &lt;/consolePatternMatchListener&gt;
- &lt;/extension&gt;
-&lt;/pre&gt;
+ The following is an example of a console pattern match listener extension point:
+&lt;pre&gt;
+ &lt;extension
+ point=&quot;org.eclipse.ui.console.consolePatternMatchListener&quot;&gt;
+ &lt;consolePatternMatchListener
+ class=&quot;com.example.ExampleConsolePatternMatcher&quot;
+ id=&quot;com.example.ExampleConsolePatternMatcher&quot;
+ regex=&quot;.*foo.*&quot;&gt;
+ &lt;enablement&gt;
+ &lt;test property=&quot;org.eclipse.ui.console.consoleTypeTest&quot; value=&quot;exampleConsole&quot;/&gt;
+ &lt;/enablement&gt;
+ &lt;/consolePatternMatchListener&gt;
+ &lt;/extension&gt;
+&lt;/pre&gt;
In the above example, the contributed console pattern matcher will be used for consoles with a type of &quot;exampleConsole.&quot;
</documentation>
</annotation>
@@ -139,10 +142,10 @@ In the above example, the contributed console pattern matcher will be used for c
<meta.section type="copyright"/>
</appInfo>
<documentation>
- Copyright (c) 2000, 2005 IBM Corporation and others.&lt;br&gt;
-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
+ Copyright (c) 2000, 2005 IBM Corporation and others.&lt;br&gt;
+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
&lt;a href=&quot;http://www.eclipse.org/legal/epl-v10.html&quot;&gt;http://www.eclipse.org/legal/epl-v10.html&lt;/a&gt;
</documentation>
</annotation>

Back to the top