Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c798ba3e3b0ac3206d68b75e763110452b048800 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!-- ====================================================================== -->
<!-- Copyright (c) 2016 Red Hat Inc. and others.                            -->
<!-- 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               -->
<!-- http://www.eclipse.org/legal/epl-v10.html                              -->
<!--                                                                        -->
<!-- Contributors:                                                          -->
<!--     Sopot Cela & Mickael Istria (Red Hat Inc). -initial implementation -->
<!-- ====================================================================== -->
<plugin>
 <extension
			 point="org.eclipse.ui.genericeditor.contentAssistProcessors">
		<contentAssistProcessor
					class="org.eclipse.ui.genericeditor.tests.contributions.BarContentAssistProcessor"
					contentType="org.eclipse.core.runtime.text">
		</contentAssistProcessor>
  <contentAssistProcessor
        class="org.eclipse.ui.genericeditor.tests.contributions.LongRunningBarContentAssistProcessor"
        contentType="org.eclipse.core.runtime.text">
  </contentAssistProcessor>
 </extension>
 <extension
			 point="org.eclipse.ui.genericeditor.hoverProviders">
		<hoverProvider
					class="org.eclipse.ui.genericeditor.tests.contributions.MagicHoverProvider"
					contentType="org.eclipse.core.runtime.text">
		</hoverProvider>
 </extension>
 <extension
			 point="org.eclipse.ui.genericeditor.presentationReconcilers">
		<presentationReconciler
					class="org.eclipse.ui.genericeditor.tests.contributions.ThePresentationReconciler"
					contentType="org.eclipse.core.runtime.text">
		</presentationReconciler>
   </extension>
 <extension
       point="org.eclipse.ui.ide.markerResolution">
    <markerResolutionGenerator
          class="org.eclipse.ui.genericeditor.tests.contributions.MarkerResolutionGenerator"
          markerType="org.eclipse.core.resources.problemmarker">
    </markerResolutionGenerator>
 </extension>

</plugin>

Back to the top