source: trunk/org.modelica.mdt.debug.core/plugin.xml @ 789

Last change on this file since 789 was 485, checked in by adrpo, 17 years ago
  • mdt 0.7.0 changes
  • fixed some bugs
  • debugging
File size: 2.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<?eclipse version="3.0"?>
3<plugin>
4
5   <extension
6         point="org.eclipse.debug.core.launchConfigurationTypes">
7      <launchConfigurationType
8            delegate="org.modelica.mdt.debug.core.launcher.MDTLaunchDelegate"
9            id="org.modelica.mdt.debug.core.launchConfigurationType"
10            modes="run, debug"
11            name="Modelica Developement Tooling (MDT)"
12            sourceLocatorId="org.modelica.mdt.debug.core.sourceLookupDirector.mdt"
13            sourcePathComputerId="org.modelica.mdt.debug.core.sourcePathComputer.mdt">
14      </launchConfigurationType>
15   </extension>
16   
17   <extension
18         point="org.eclipse.debug.core.sourceLocators">
19      <sourceLocator
20            name="MDT Source Lookup Director"
21            class="org.modelica.mdt.debug.core.sourcelookup.MDTSourceLookupDirector"
22            id="org.modelica.mdt.debug.core.sourceLookupDirector.mdt">
23      </sourceLocator>
24   </extension>
25   
26   <extension
27         point="org.eclipse.debug.core.sourcePathComputers">
28      <sourcePathComputer
29            class="org.modelica.mdt.debug.core.sourcelookup.MDTSourcePathComputerDelegate"
30            id="org.modelica.mdt.debug.core.sourcePathComputer.mdt">
31      </sourcePathComputer>
32   </extension>
33   
34   
35   <extension
36         point="org.eclipse.debug.core.breakpoints">
37      <breakpoint
38            class="org.modelica.mdt.debug.core.breakpoints.MDTLineBreakpoint"
39            id="org.modelica.mdt.debug.core.lineBreakpoint"
40            markerType="org.modelica.mdt.debug.core.markerType.lineBreakpoint"
41            name="MDT Line Breakpoints" />           
42      <breakpoint 
43            class="org.modelica.mdt.debug.core.breakpoints.MDTWatchpoint"
44            name="MDT Watchpoints"
45            markerType="org.modelica.mdt.debug.core.markerType.watchpoint"
46            id="org.modelica.mdt.debug.core.watchpoint"/>
47   </extension>
48   
49   <extension 
50        point="org.eclipse.core.resources.markers"
51        id="markerType.lineBreakpoint"
52        name = "MDT Line Breakpoint Marker">
53      <super type="org.eclipse.debug.core.lineBreakpointMarker" />
54      <persistent value="true" />
55   </extension>
56   <extension 
57        point="org.eclipse.core.resources.markers"
58        id="markerType.watchpoint"
59        name = "MDT Watchpoint Marker">
60      <super type="org.modelica.mdt.debug.core.markerType.lineBreakpoint" />
61      <persistent value="true" />
62   </extension>
63
64
65</plugin>
Note: See TracBrowser for help on using the repository browser.