Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2007-11-27 14:49:13 +0000
committerDani Megert2007-11-27 14:49:13 +0000
commit7290c108ccf103bcd4f7d6e9d60dd1477221f949 (patch)
treec1cba65b7284c51900ad19aee9f5f9da0effc009 /org.eclipse.ui.editors/schema
parent5dd18a07a9857053a9b7dc76a418411bb74ee6f8 (diff)
downloadeclipse.platform.text-7290c108ccf103bcd4f7d6e9d60dd1477221f949.tar.gz
eclipse.platform.text-7290c108ccf103bcd4f7d6e9d60dd1477221f949.tar.xz
eclipse.platform.text-7290c108ccf103bcd4f7d6e9d60dd1477221f949.zip
Added support for native problem underline style.
Diffstat (limited to 'org.eclipse.ui.editors/schema')
-rw-r--r--org.eclipse.ui.editors/schema/markerAnnotationSpecification.exsd17
1 files changed, 9 insertions, 8 deletions
diff --git a/org.eclipse.ui.editors/schema/markerAnnotationSpecification.exsd b/org.eclipse.ui.editors/schema/markerAnnotationSpecification.exsd
index aa551ebc6b6..7b1afc5eed6 100644
--- a/org.eclipse.ui.editors/schema/markerAnnotationSpecification.exsd
+++ b/org.eclipse.ui.editors/schema/markerAnnotationSpecification.exsd
@@ -259,7 +259,7 @@ since: 3.2
<attribute name="textStylePreferenceKey" type="string">
<annotation>
<documentation>
- the preference key for the text decoration property
+ the preference key for the text decoration property.
since: 3.0
</documentation>
</annotation>
@@ -267,25 +267,26 @@ since: 3.0
<attribute name="textStylePreferenceValue">
<annotation>
<documentation>
- the default value for the &quot;show in text&quot; decoration style
-since: 3.0
-DASHED_BOX: since 3.3
+ the default value for the &quot;show in text&quot; decoration style.
+since: 3.0 (DASHED_BOX since 3.3, PROBLEM_UNDERLINE: since 3.4)
</documentation>
</annotation>
<simpleType>
<restriction base="string">
- <enumeration value="SQUIGGLES">
- </enumeration>
<enumeration value="BOX">
</enumeration>
<enumeration value="DASHED_BOX">
</enumeration>
- <enumeration value="UNDERLINE">
- </enumeration>
<enumeration value="IBEAM">
</enumeration>
<enumeration value="NONE">
</enumeration>
+ <enumeration value="PROBLEM_UNDERLINE">
+ </enumeration>
+ <enumeration value="SQUIGGLES">
+ </enumeration>
+ <enumeration value="UNDERLINE">
+ </enumeration>
</restriction>
</simpleType>
</attribute>

Back to the top