| Summary: | Extract interface from ScriptMarkerFactory | ||
|---|---|---|---|
| Product: | [Technology] DLTK | Reporter: | Gabriel Petrovay <gabipetrovay> |
| Component: | Common-Debug | Assignee: | dltk.common-inbox <dltk.common-inbox> |
| Status: | NEW --- | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
A public API interface is needed for the implementors to access the breakpoint marker types. public interface IScriptBreakpointMarkerTypes { public static final String LINE_BREAKPOINT_MARKER_ID = "org.eclipse.dltk.debug.scriptLineBreakpointMarker"; //$NON-NLS-1$ public static final String METHOD_ENTRY_MARKER_ID = "org.eclipse.dltk.debug.scriptMethodEntryBreakpointMarker"; //$NON-NLS-1$ public static final String WATCHPOINT_MARKER_ID = "org.eclipse.dltk.debug.scriptWatchPointMarker"; //$NON-NLS-1$ public static final String SPAWNPOINT_MARKER_ID = "org.eclipse.dltk.debug.scriptSpawnpointMarker"; //$NON-NLS-1$ } public class ScriptMarkerFactory implements IScriptBreakpointMarkerTypes { // ... } Gabriel