Skip to main content
summaryrefslogtreecommitdiffstats
blob: dddc4d935471c352269866d7300e30b3f4e80830 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- File written by PDE 1.0 -->
<plugin
   id="org.eclipse.debug.core"
   name="%pluginName"
   version="2.0.0"
   provider-name="%providerName"
   class="org.eclipse.debug.core.DebugPlugin">
<!-- Required plugins -->
<requires>
   <import plugin="org.apache.xerces"/>
   <import plugin="org.eclipse.core.resources"/>
</requires>

<!-- Runtime -->
<runtime>
   <library name="dtcore.jar">
      <export name="*"/>
   </library>
</runtime>

<!-- Extension points -->
<extension-point id="launchers" name="%launcherExtensionPointName"/>
<extension-point id="breakpoints" name="%breakpointExtensionPointName"/>
<extension-point id="launchConfigurationTypes" name="%launchConfigurationTypeNameExtensionPointName"/>
<extension-point id="launchConfigurationComparators" name="%launchConfigurationComparatorsExtensionPointName"/>
<extension-point id="statusHandlers" name="%statusHandlerExtensionPointName"/>
<extension-point id="sourceLocators" name="%sourceLocatorsExtensionPointName"/>

<!-- Extensions -->
<extension id="breakpointMarker" point="org.eclipse.core.resources.markers">
   <super type="org.eclipse.core.resources.marker"/>
   <persistent value="true"/>
   <attribute name="org.eclipse.debug.core.modelIdentifier"/>
   <attribute name="org.eclipse.debug.core.enabled"/>
   <attribute name="org.eclipse.debug.core.registered"/>
   <attribute name="org.eclipse.debug.core.persisted"/>
</extension>
<extension id="lineBreakpointMarker" point="org.eclipse.core.resources.markers">
   <super type="org.eclipse.debug.core.breakpointMarker"/>
   <super type="org.eclipse.core.resources.textmarker"/>
   <persistent value="true"/>
</extension>

<extension point="org.eclipse.team.core.fileTypes">
  <fileTypes extension="launch" type="text"/>
</extension>

</plugin>

Back to the top