asobolev | c6294ad | 2007-02-22 08:39:46 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <?eclipse version="3.0"?> |
| 3 | <plugin> |
ssanders | 6cd9d74 | 2008-03-13 04:32:13 +0000 | [diff] [blame] | 4 | <extension-point id="scriptDebugModel" name="%extension-point.name.scriptDebugModel" |
dkovalev | 111b4b6 | 2007-07-19 10:23:44 +0000 | [diff] [blame] | 5 | schema="schema/scriptDebugModel.exsd" /> |
ssanders | 6cd9d74 | 2008-03-13 04:32:13 +0000 | [diff] [blame] | 6 | <extension-point id="smartStepEvaluator" name="%extension-point.name.smartStepEvaluator" schema="schema/smartStepEvaluator.exsd"/> |
| 7 | <extension-point id="hotCodeReplaceProvider" name="%extension-point.name.hotCodeReplaceProvider" schema="schema/hotCodeReplaceProvider.exsd"/> |
dkovalev | 111b4b6 | 2007-07-19 10:23:44 +0000 | [diff] [blame] | 8 | |
| 9 | <extension point="org.eclipse.core.runtime.preferences"> |
| 10 | <initializer |
| 11 | class="org.eclipse.dltk.debug.core.DLTKDebugPluginPreferenceInitializer" /> |
| 12 | </extension> |
| 13 | |
| 14 | <extension id="scriptBreakpointMarker" |
| 15 | point="org.eclipse.core.resources.markers"> |
| 16 | <persistent value="true"/> |
| 17 | |
| 18 | <super type="org.eclipse.debug.core.breakpointMarker" /> |
| 19 | |
| 20 | <attribute name="org.eclipse.dltk.debug.id"/> |
| 21 | <attribute name="org.eclipse.dltk.debug.hit_count"/> |
| 22 | <attribute name="org.eclipse.dltk.debug.expression"/> |
| 23 | <attribute name="org.eclipse.dltk.debug.expression.state"/> |
| 24 | <attribute name="org.eclipse.dltk.debug.hit_value"/> |
| 25 | <attribute name="org.eclipse.dltk.debug.hit_condition"/> |
| 26 | </extension> |
| 27 | |
| 28 | <extension id="scriptLineBreakpointMarker" |
| 29 | point="org.eclipse.core.resources.markers"> |
| 30 | <persistent value="true" /> |
apanchenk | 8c785f1 | 2008-08-08 01:41:55 +0000 | [diff] [blame] | 31 | |
dkovalev | 111b4b6 | 2007-07-19 10:23:44 +0000 | [diff] [blame] | 32 | <super type="org.eclipse.dltk.debug.scriptBreakpointMarker" /> |
apanchenk | 8c785f1 | 2008-08-08 01:41:55 +0000 | [diff] [blame] | 33 | <super type="org.eclipse.debug.core.lineBreakpointMarker" /> |
| 34 | |
dkovalev | 111b4b6 | 2007-07-19 10:23:44 +0000 | [diff] [blame] | 35 | </extension> |
| 36 | |
aplatov | d760041 | 2007-11-22 07:58:27 +0000 | [diff] [blame] | 37 | <extension id="scriptExceptionBreakpointMarker" |
| 38 | point="org.eclipse.core.resources.markers"> |
| 39 | <persistent value="true" /> |
| 40 | |
| 41 | <super type="org.eclipse.dltk.debug.scriptBreakpointMarker" /> |
| 42 | |
| 43 | <attribute name="org.eclipse.dltk.debug.typeName"/> |
| 44 | <attribute name="org.eclipse.dltk.debug.caught"/> |
| 45 | <attribute name="org.eclipse.dltk.debug.uncaught"/> |
| 46 | <attribute name="org.eclipse.dltk.debug.suspend_on_subclasses"/> |
| 47 | </extension> |
| 48 | |
dkovalev | 111b4b6 | 2007-07-19 10:23:44 +0000 | [diff] [blame] | 49 | <extension id="scriptMethodEntryBreakpointMarker" |
| 50 | point="org.eclipse.core.resources.markers"> |
| 51 | <persistent value="true" /> |
| 52 | |
| 53 | <super type="org.eclipse.dltk.debug.scriptLineBreakpointMarker" /> |
| 54 | |
| 55 | <attribute name="org.eclipse.dltk.debug.methodName"/> |
| 56 | <attribute name="org.eclipse.dltk.debug.methodEntry"/> |
| 57 | <attribute name="org.eclipse.dltk.debug.methodExit"/> |
| 58 | <attribute name="org.eclipse.dltk.debug.entryBrId"/> |
| 59 | <attribute name="org.eclipse.dltk.debug.exitBrId"/> |
| 60 | </extension> |
| 61 | |
| 62 | <extension id="scriptWatchPointMarker" |
| 63 | point="org.eclipse.core.resources.markers"> |
| 64 | <persistent value="true" /> |
| 65 | |
| 66 | <super type="org.eclipse.dltk.debug.scriptLineBreakpointMarker" /> |
apanchenk | 8acf748 | 2008-10-20 09:07:55 +0000 | [diff] [blame] | 67 | <super type="org.eclipse.debug.core.lineBreakpointMarker" /> |
dkovalev | 111b4b6 | 2007-07-19 10:23:44 +0000 | [diff] [blame] | 68 | |
| 69 | <attribute name="org.eclipse.dltk.debug.fieldName"/> |
| 70 | <attribute name="org.eclipse.dltk.debug.access"/> |
| 71 | <attribute name="org.eclipse.dltk.debug.modification"/> |
| 72 | </extension> |
| 73 | |
apanchenk | 8acf748 | 2008-10-20 09:07:55 +0000 | [diff] [blame] | 74 | <extension id="scriptSpawnpointMarker" |
| 75 | point="org.eclipse.core.resources.markers"> |
| 76 | <persistent value="true" /> |
| 77 | <super type="org.eclipse.dltk.debug.scriptLineBreakpointMarker" /> |
| 78 | <super type="org.eclipse.debug.core.lineBreakpointMarker" /> |
| 79 | </extension> |
| 80 | |
dkovalev | 111b4b6 | 2007-07-19 10:23:44 +0000 | [diff] [blame] | 81 | <extension point="org.eclipse.debug.core.breakpoints"> |
| 82 | <breakpoint |
| 83 | class="org.eclipse.dltk.internal.debug.core.model.ScriptLineBreakpoint" |
| 84 | id="scriptLineBreakpoint" |
| 85 | markerType="org.eclipse.dltk.debug.scriptLineBreakpointMarker" |
| 86 | name="%ScriptLineBreakpoint.name"/> |
| 87 | |
| 88 | <breakpoint |
| 89 | class="org.eclipse.dltk.internal.debug.core.model.ScriptMethodEntryBreakpoint" |
| 90 | id="scriptMethodEntryBreakpoint" |
| 91 | markerType="org.eclipse.dltk.debug.scriptMethodEntryBreakpointMarker" |
| 92 | name="%ScriptMethodEntryBreakpoint.name"/> |
| 93 | |
| 94 | <breakpoint |
| 95 | class="org.eclipse.dltk.internal.debug.core.model.ScriptWatchpoint" |
| 96 | id="scriptWatchpoint" |
| 97 | markerType="org.eclipse.dltk.debug.scriptWatchPointMarker" |
| 98 | name="%ScriptWatchpoint.name"/> |
apanchenk | 8acf748 | 2008-10-20 09:07:55 +0000 | [diff] [blame] | 99 | <breakpoint |
| 100 | class="org.eclipse.dltk.internal.debug.core.model.ScriptSpawnpoint" |
| 101 | id="scriptSpawnpoint" |
| 102 | markerType="org.eclipse.dltk.debug.scriptSpawnpointMarker" |
| 103 | name="%ScriptSpawnpoint.name"/> |
aplatov | d760041 | 2007-11-22 07:58:27 +0000 | [diff] [blame] | 104 | <breakpoint |
| 105 | class="org.eclipse.dltk.internal.debug.core.model.ScriptExceptionBreakpoint" |
| 106 | id="scriptExceptionBreakpoint" |
| 107 | markerType="org.eclipse.dltk.debug.scriptExceptionBreakpointMarker" |
| 108 | name="%ScriptExceptionBreakpoint.name"> |
| 109 | </breakpoint> |
dkovalev | 111b4b6 | 2007-07-19 10:23:44 +0000 | [diff] [blame] | 110 | </extension> |
asobolev | c6294ad | 2007-02-22 08:39:46 +0000 | [diff] [blame] | 111 | </plugin> |