Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/rules/DefaultPartitioner.java2
-rw-r--r--org.eclipse.ui.editors/schema/templates.exsd10
2 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/rules/DefaultPartitioner.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/rules/DefaultPartitioner.java
index 25ad2b4f2fe..ce586f6f122 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/rules/DefaultPartitioner.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/rules/DefaultPartitioner.java
@@ -521,7 +521,7 @@ public class DefaultPartitioner implements IDocumentPartitioner, IDocumentPartit
}
/*
- * @see org.eclipse.jface.text.IDocumentPartitionerExtension2#computeZeroLengthPartitioning(int, int)
+ * @see org.eclipse.jface.text.IDocumentPartitionerExtension2#computePartitioning(int, int, boolean)
* @since 3.0
*/
public ITypedRegion[] computePartitioning(int offset, int length, boolean includeZeroLengthPartitions) {
diff --git a/org.eclipse.ui.editors/schema/templates.exsd b/org.eclipse.ui.editors/schema/templates.exsd
index 5a6afbb8a42..594ff80fbb3 100644
--- a/org.eclipse.ui.editors/schema/templates.exsd
+++ b/org.eclipse.ui.editors/schema/templates.exsd
@@ -67,7 +67,7 @@
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
- A subclass of &lt;code&gt;org.eclipse.jface.text.templates.ContextType&lt;/code&gt;.
+ A subclass of &lt;code&gt;org.eclipse.jface.text.templates.TemplateContextType&lt;/code&gt;.
</documentation>
<appInfo>
<meta.attribute kind="java"/>
@@ -77,7 +77,7 @@
<attribute name="name" type="string">
<annotation>
<documentation>
-
+ The display name of this context.
</documentation>
</annotation>
</attribute>
@@ -128,14 +128,14 @@
<attribute name="name" type="string">
<annotation>
<documentation>
- The UI name of this resolver.
+ The display name of this resolver.
</documentation>
</annotation>
</attribute>
<attribute name="icon" type="string">
<annotation>
<documentation>
-
+ An icon that may be displayed in the user interface.
</documentation>
<appInfo>
<meta.attribute kind="resource"/>
@@ -189,7 +189,7 @@
<attribute name="icon" type="string">
<annotation>
<documentation>
-
+ An icon that may be displayed in the UI for this template, for example in content assist proposals.
</documentation>
<appInfo>
<meta.attribute kind="resource"/>

Back to the top