Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.ui/plugin.xml

Issue 10816034: Basic 'Quick Fix' support and one fix as example/test (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?> 2 <?eclipse version="3.4"?>
3 <plugin> 3 <plugin>
4 4
5 <extension-point id="dartElementFilters" name="%elementFiltersName" schema="s chema/dartElementFilters.exsd"/> 5 <extension-point id="dartElementFilters" name="%elementFiltersName" schema="s chema/dartElementFilters.exsd"/>
6 <extension-point id="dartEditorTextHovers" name="%javaEditorTextHoversName" s chema="schema/dartEditorTextHovers.exsd"/> 6 <extension-point id="dartEditorTextHovers" name="%javaEditorTextHoversName" s chema="schema/dartEditorTextHovers.exsd"/>
7 <extension-point id="dartDocCompletionProcessor" name="%javadocCompletionProc essor" schema="schema/dartDocCompletionProcessor.exsd"/> 7 <extension-point id="dartDocCompletionProcessor" name="%javadocCompletionProc essor" schema="schema/dartDocCompletionProcessor.exsd"/>
8 <extension-point id="quickFixProcessors" name="%quickFixProcessorExtensionPoi nt" schema="schema/quickFixProcessors.exsd"/> 8 <extension-point id="quickFixProcessors" name="%quickFixProcessorExtensionPoi nt" schema="schema/quickFixProcessors.exsd"/>
9 <extension-point id="quickAssistProcessors" name="%quickAssistProcessorExtens ionPoint" schema="schema/quickAssistProcessors.exsd"/> 9 <extension-point id="quickAssistProcessors" name="%quickAssistProcessorExtens ionPoint" schema="schema/quickAssistProcessors.exsd"/>
10 <extension-point id="foldingStructureProviders" name="%foldingStructureProvid ersExtensionPoint" schema="schema/foldingStructureProviders.exsd"/> 10 <extension-point id="foldingStructureProviders" name="%foldingStructureProvid ersExtensionPoint" schema="schema/foldingStructureProviders.exsd"/>
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 defaultsTo="org.eclipse.jface.textfont" 534 defaultsTo="org.eclipse.jface.textfont"
535 categoryId="com.google.dart.tools.ui.presentation" 535 categoryId="com.google.dart.tools.ui.presentation"
536 id="com.google.dart.tools.ui.editors.textfont.default"> 536 id="com.google.dart.tools.ui.editors.textfont.default">
537 <description> 537 <description>
538 %defaultEditorFontDefintion.description 538 %defaultEditorFontDefintion.description
539 </description> 539 </description>
540 </fontDefinition> 540 </fontDefinition>
541 </extension> 541 </extension>
542 542
543 543
544 <extension 544 <extension
545 point="org.eclipse.ui.editors.annotationTypes"> 545 point="org.eclipse.ui.editors.annotationTypes">
546 <type 546 <type
547 name="com.google.dart.tools.ui.occurrences"> 547 name="com.google.dart.tools.ui.error"
548 </type> 548 super="org.eclipse.ui.workbench.texteditor.error"
549 <type 549 markerType="com.google.dart.tools.core.problem"
550 name="com.google.dart.tools.ui.overrideIndicator"> 550 markerSeverity="2"/>
551 </type> 551 <type
552 </extension> 552 name="com.google.dart.tools.ui.warning"
553 super="org.eclipse.ui.workbench.texteditor.warning"
554 markerType="com.google.dart.tools.core.problem"
555 markerSeverity="1"/>
556 <type
557 name="com.google.dart.tools.ui.info"
558 super="org.eclipse.ui.workbench.texteditor.info"
559 markerType="com.google.dart.tools.core.problem"
560 markerSeverity="0"/>
561 <type name="com.google.dart.tools.ui.occurrences"/>
562 <type name="com.google.dart.tools.ui.overrideIndicator"/>
563 </extension>
564
553 <extension 565 <extension
554 point="org.eclipse.ui.editors.markerAnnotationSpecification"> 566 point="org.eclipse.ui.editors.markerAnnotationSpecification">
555 <specification 567 <specification
556 annotationType="com.google.dart.tools.ui.occurrences" 568 annotationType="com.google.dart.tools.ui.occurrences"
557 label="%OccurrenceAnnotation.label" 569 label="%OccurrenceAnnotation.label"
558 icon="$nl$/icons/full/obj16/searchm_obj.gif" 570 icon="$nl$/icons/full/obj16/searchm_obj.gif"
559 textPreferenceKey="javaScriptOccurrenceIndication" 571 textPreferenceKey="javaScriptOccurrenceIndication"
560 textPreferenceValue="false" 572 textPreferenceValue="false"
561 highlightPreferenceKey="javaScriptOccurrenceHighlighting" 573 highlightPreferenceKey="javaScriptOccurrenceHighlighting"
562 highlightPreferenceValue="true" 574 highlightPreferenceValue="true"
(...skipping 2666 matching lines...) Expand 10 before | Expand all | Expand 10 after
3229 name="Remove resource references in Dart source"> 3241 name="Remove resource references in Dart source">
3230 <enablement> 3242 <enablement>
3231 <with variable="affectedNatures"> 3243 <with variable="affectedNatures">
3232 <iterate operator="or"> 3244 <iterate operator="or">
3233 <equals value="com.google.dart.tools.core.dartNature"/> 3245 <equals value="com.google.dart.tools.core.dartNature"/>
3234 </iterate> 3246 </iterate>
3235 </with> 3247 </with>
3236 </enablement> 3248 </enablement>
3237 </deleteParticipant> 3249 </deleteParticipant>
3238 </extension> 3250 </extension>
3251
3252 <extension
3253 point="com.google.dart.tools.ui.quickFixProcessors">
3254 <quickFixProcessor
3255 name="%defaultQuickFixProcessor"
3256 class="com.google.dart.tools.ui.internal.text.correction.QuickFixPro cessor"
3257 id="com.google.dart.tools.ui.internal.text.correction.QuickFixProces sor">
3258 </quickFixProcessor>
3259 <!--<quickFixProcessor
3260 name="%spellingQuickFixProcessor"
3261 class="org.eclipse.jdt.internal.ui.text.spelling.WordQuickFixProcess or"
3262 id= "org.eclipse.jdt.ui.text.correction.spelling.QuickFixProcessor">
3263 <handledMarkerTypes>
3264 <markerType id="org.eclipse.jdt.ui.internal.spelling"/>
3265 </handledMarkerTypes>
3266 </quickFixProcessor>-->
3267 </extension>
3239 3268
3240 <extension 3269 <extension
3241 point="com.google.dart.tools.ui.quickAssistProcessors"> 3270 point="com.google.dart.tools.ui.quickAssistProcessors">
3242 <quickAssistProcessor 3271 <quickAssistProcessor
3243 class="com.google.dart.tools.ui.internal.text.correction.QuickAssist Processor" 3272 class="com.google.dart.tools.ui.internal.text.correction.QuickAssist Processor"
3244 id="com.google.dart.tools.ui.internal.text.correction.QuickAssistPro cessor"/> 3273 id="com.google.dart.tools.ui.internal.text.correction.QuickAssistPro cessor"/>
3245 </extension> 3274 </extension>
3246 3275
3247 </plugin> 3276 </plugin>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698