-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
51 lines (49 loc) · 1.62 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.core.contenttype.contentTypes">
<content-type
file-extensions="stone"
base-type="org.eclipse.core.runtime.text"
name="stone_editor.stone"
id="stone_editor.stone">
</content-type>
</extension>
<extension
point="org.eclipse.ui.editors">
<editorContentTypeBinding
contentTypeId="stone_editor.stone"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
</extension>
<extension
point="org.eclipse.ui.genericeditor.presentationReconcilers">
<presentationReconciler
class="stone_editor.协调器"
contentType="stone_editor.stone">
</presentationReconciler>
</extension>
<extension
point="org.eclipse.ui.genericeditor.hoverProviders">
<hoverProvider
class="stone_editor.悬浮提供器"
contentType="stone_editor.stone">
</hoverProvider>
</extension>
<extension
point="org.eclipse.ui.genericeditor.contentAssistProcessors">
<contentAssistProcessor
class="stone_editor.内容辅助处理器"
contentType="stone_editor.stone">
</contentAssistProcessor>
</extension>
<extension
point="org.eclipse.core.filebuffers.documentSetup">
<participant
contentTypeId="stone_editor.stone"
extensions="stone"
class="stone_editor.ValidatorDocumentSetupParticipant">
</participant>
</extension>
</plugin>