~ubuntu-branches/ubuntu/utopic/eclipse-eclox/utopic

« back to all changes in this revision

Viewing changes to eclox.core/plugin.xml

  • Committer: Package Import Robot
  • Author(s): Graham Inggs
  • Date: 2013-07-07 20:33:10 UTC
  • Revision ID: package-import@ubuntu.com-20130707203310-a44yw80gqtc2s9ob
Tags: upstream-0.10.0
ImportĀ upstreamĀ versionĀ 0.10.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<?eclipse version="3.0"?>
 
3
<plugin>
 
4
   <extension-point id="doxygen" name="org.gna.eclox.core.doxygen" schema="schema/doxygen.exsd"/>
 
5
   <extension
 
6
         point="org.eclipse.core.runtime.preferences">
 
7
      <initializer class="eclox.core.PreferencesInitializer"/>
 
8
   </extension>
 
9
   <extension
 
10
         point="org.eclipse.core.runtime.contentTypes">
 
11
      <content-type
 
12
            file-extensions="Doxyfile, doxyfile"
 
13
            file-names="Doxyfile, doxyfile"
 
14
            id="doxyfile"
 
15
            name="Doxyfile"
 
16
            priority="normal"/>
 
17
   </extension>
 
18
   <extension
 
19
         point="org.eclipse.ui.preferencePages">
 
20
      <page
 
21
            class="eclox.core.ui.PreferencePage"
 
22
            id="eclox.core.PreferencePage"
 
23
            name="Doxygen"/>
 
24
   </extension>
 
25
   <extension
 
26
         point="org.eclipse.core.runtime.preferences">
 
27
      <initializer class="eclox.core.PreferencesInitializer"/>
 
28
   </extension>
 
29
   <extension
 
30
         id="doxygen.marker"
 
31
         name="Doxygen Problem"
 
32
         point="org.eclipse.core.resources.markers">
 
33
      <super type="org.eclipse.core.resources.problemmarker"/>
 
34
      <attribute name="priority"/>
 
35
      <attribute name="message"/>
 
36
      <attribute name="severity"/>
 
37
      <attribute name="location"/>
 
38
   </extension>
 
39
   <extension
 
40
         point="org.eclipse.ui.decorators">
 
41
      <decorator
 
42
            adaptable="false"
 
43
            class="eclox.core.ui.DoxyfileDecorator"
 
44
            id="eclox.core.decorator"
 
45
            label="Doxygen Build Indicator"
 
46
            lightweight="true"
 
47
            state="true">
 
48
         <description>
 
49
            Shows when doxygen is building a given doxyfile.
 
50
         </description>
 
51
         <enablement>
 
52
            <objectClass name="org.eclipse.core.resources.IFile"/>
 
53
         </enablement>
 
54
      </decorator>
 
55
   </extension>
 
56
 
 
57
</plugin>