forked from LucasBullen/LSP4J_Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
113 lines (113 loc) · 4.51 KB
/
plugin.xml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.core.contenttype.contentTypes">
<content-type
base-type="org.eclipse.core.runtime.text"
file-names="exer1.txt"
id="org.eclipsecon.exercise1-contenttype"
name="Exercise 1 Content Type (exer1.txt)"
priority="normal">
</content-type>
<content-type
base-type="org.eclipse.core.runtime.text"
file-names="exer2.txt"
id="org.eclipsecon.exercise2-contenttype"
name="Exercise 2 Content Type (exer2.txt)"
priority="normal">
</content-type>
<content-type
base-type="org.eclipse.core.runtime.text"
file-names="exer3.txt"
id="org.eclipsecon.exercise3-contenttype"
name="Exercise 3 Content Type (exer3.txt)"
priority="normal">
</content-type>
<content-type
base-type="org.eclipse.core.runtime.text"
file-names="exer4.txt"
id="org.eclipsecon.exercise4-contenttype"
name="Exercise 4 Content Type (exer4.txt)"
priority="normal">
</content-type>
<content-type
base-type="org.eclipse.core.runtime.text"
file-names="solution.txt"
id="org.eclipsecon.solution-contenttype"
name="Solution Content Type (solution.txt)"
priority="normal">
</content-type>
</extension>
<extension
point="org.eclipse.lsp4e.languageServer">
<server
class="org.eclipsecon.languageserverplugin.ConnectionProvider1"
id="org.eclipsecon.languageserverplugin.server1"
label="Exersice 1 Server">
</server>
<contentTypeMapping
contentType="org.eclipsecon.exercise1-contenttype"
id="org.eclipsecon.languageserverplugin.server1">
</contentTypeMapping>
<server
class="org.eclipsecon.languageserverplugin.ConnectionProvider2"
id="org.eclipsecon.languageserverplugin.server2"
label="Exersice 2 Server">
</server>
<contentTypeMapping
contentType="org.eclipsecon.exercise2-contenttype"
id="org.eclipsecon.languageserverplugin.server2">
</contentTypeMapping>
<server
class="org.eclipsecon.languageserverplugin.ConnectionProvider3"
id="org.eclipsecon.languageserverplugin.server3"
label="Exersice 3 Server">
</server>
<contentTypeMapping
contentType="org.eclipsecon.exercise3-contenttype"
id="org.eclipsecon.languageserverplugin.server3">
</contentTypeMapping>
<server
class="org.eclipsecon.languageserverplugin.ConnectionProvider4"
id="org.eclipsecon.languageserverplugin.server4"
label="Exersice 4 Server">
</server>
<contentTypeMapping
contentType="org.eclipsecon.exercise4-contenttype"
id="org.eclipsecon.languageserverplugin.server4">
</contentTypeMapping>
<server
class="org.eclipsecon.languageserverplugin.ConnectionProviderSolution"
id="org.eclipsecon.languageserverplugin.solutionserver"
label="Solution Server">
</server>
<contentTypeMapping
contentType="org.eclipsecon.solution-contenttype"
id="org.eclipsecon.languageserverplugin.solutionserver">
</contentTypeMapping>
</extension>
<extension
point="org.eclipse.ui.editors">
<editorContentTypeBinding
contentTypeId="org.eclipsecon.exercise1-contenttype"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
<editorContentTypeBinding
contentTypeId="org.eclipsecon.exercise2-contenttype"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
<editorContentTypeBinding
contentTypeId="org.eclipsecon.exercise3-contenttype"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
<editorContentTypeBinding
contentTypeId="org.eclipsecon.exercise4-contenttype"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
<editorContentTypeBinding
contentTypeId="org.eclipsecon.solution-contenttype"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
</extension>
</plugin>