-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathplugin.xml
More file actions
73 lines (70 loc) · 2.49 KB
/
Copy pathplugin.xml
File metadata and controls
73 lines (70 loc) · 2.49 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension-point id="outline" name="outline Name" schema="schema/outline.exsd"/>
<extension
point="org.eclipse.help.contexts">
<contexts
file="$nl$/contexts.xml">
</contexts>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
category="org.jcryptool.preferences.editors"
class="net.sourceforge.javahexeditor.plugin.editors.HexEditorPreferencesPage"
id="net.sourceforge.javahexeditor.plugin.editors.PreferencesPage"
name="%preferences-page.name"/>
</extension>
<extension
point="org.eclipse.core.contenttype.contentTypes">
<content-type
file-extensions="bin"
id="javahexeditor.binaryFile"
name="%content-type.binary.name"
priority="high">
</content-type>
<content-type
base-type="javahexeditor.binaryFile"
file-extensions="jar,cab,zip,rar,7z"
id="javahexeditor.archiveFile"
name="%content-type.archive.name"
priority="normal">
</content-type>
<content-type
base-type="javahexeditor.binaryFile"
file-extensions="exe,elf,out,com,abs"
id="javahexeditor.executableFile"
name="%content-type.executable.name"
priority="high">
</content-type>
<content-type
base-type="javahexeditor.binaryFile"
file-extensions="o,obj"
id="javahexeditor.objectFile"
name="%content-type.object.name"
priority="normal">
</content-type>
<content-type
base-type="javahexeditor.binaryFile"
file-extensions="dll,dylib,so"
id="javahexeditor.sharedLibFile"
name="%content-type.shared-library.name"
priority="normal">
</content-type>
<content-type
base-type="javahexeditor.binaryFile"
file-extensions="a,lib"
id="javahexeditor.staticLibFile"
name="%content-type.static-library.name"
priority="normal">
</content-type>
<content-type
base-type="javahexeditor.binaryFile"
file-extensions="class,dat,data,drv,hex,iso,part,pdf,png,ram,res,rom,sys,txt"
id="javahexeditor.miscFile"
name="%content-type.miscellaneous.name"
priority="low">
</content-type>
</extension>
</plugin>