-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
34 lines (26 loc) · 872 Bytes
/
plugin.xml
File metadata and controls
34 lines (26 loc) · 872 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.decorators">
<decorator
id="ShowTextAttr.decorator1"
label="label">
</decorator>
<decorator
adaptable="true"
class="org.inosn7bc.showtextattr.decorators.AttrDecorator"
id="inosn7bc.showtextattr.decorators.AttrDecorator"
label="ShowTextAttrDecorator (Working Set)"
state="true">
<enablement>
<objectClass
name="org.eclipse.core.resources.IFile">
</objectClass>
</enablement>
<description>
Decorates working sets with text attr for all text contained resources
</description>
</decorator>
</extension>
</plugin>