Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: e529f6df1195a2431e9d742e6ec879081b01bfb5 (plain) (tree)
1
2
3
4
5
6




                                      
                  











                                                
                                                                                   



                         





                                                                                                                                                                    




















                                                                                
<?xml version="1.0" encoding="UTF-8"?>
<!-- File written by PDE 1.0 -->
<plugin
   id="org.eclipse.debug.core"
   name="%pluginName"
   version="2.1.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="*"/>
      <packages prefixes="org.eclipse.debug.core,org.eclipse.debug.internal.core"/>
   </library>
</runtime>

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

<!-- 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