/**
* Returns the type of marker associated with Java line breakpoints
*/
- public static String getMarkerType() {
- return PHP_LINE_BREAKPOINT;
- }
+// public static String getMarkerType() {
+// return PHP_LINE_BREAKPOINT;
+// }
public int getHitCount() throws CoreException {
return ensureMarker().getAttribute(PHPBreakpoint.HIT_COUNT, 1);
/**
* Fires a <code>CREATE</code> event for this element.
*/
- protected void fireCreationEvent() {
- fireEvent(new DebugEvent(this, DebugEvent.CREATE));
- }
+// protected void fireCreationEvent() {
+// fireEvent(new DebugEvent(this, DebugEvent.CREATE));
+// }
/**
* Fires a <code>RESUME</code> event for this element with the given
* @param detail
* event detail code
*/
- public void fireResumeEvent(int detail) {
- fireEvent(new DebugEvent(this, DebugEvent.RESUME, detail));
- }
+// public void fireResumeEvent(int detail) {
+// fireEvent(new DebugEvent(this, DebugEvent.RESUME, detail));
+// }
/**
* Fires a <code>SUSPEND</code> event for this element with the given
* @param detail
* event detail code
*/
- public void fireSuspendEvent(int detail) {
- fireEvent(new DebugEvent(this, DebugEvent.SUSPEND, detail));
- }
+// public void fireSuspendEvent(int detail) {
+// fireEvent(new DebugEvent(this, DebugEvent.SUSPEND, detail));
+// }
/**
* Fires a <code>TERMINATE</code> event for this element.
fireThreadCreateEvent(phpThread);
}
- public void updateThreads(PHPThread phpThread) {
- fireChangeEvent();
- fireThreadCreateEvent(phpThread);
- }
+// public void updateThreads(PHPThread phpThread) {
+// fireChangeEvent();
+// fireThreadCreateEvent(phpThread);
+// }
private void fireChangeEvent() {
DebugEvent ev = new DebugEvent(this, DebugEvent.CHANGE);
DebugPlugin.getDefault().fireDebugEventSet(new DebugEvent[] { ev });
}
- protected PHPThread getThreadById(int id) {
- for (int i = 0; i < threads.length; i++) {
- if (threads[i].getId() == id) {
- return threads[i];
- }
- }
- return null;
- }
+// protected PHPThread getThreadById(int id) {
+// for (int i = 0; i < threads.length; i++) {
+// if (threads[i].getId() == id) {
+// return threads[i];
+// }
+// }
+// return null;
+// }
public IThread[] getThreads() {
return threads;
}
}
- public int getStackFramesSize () {
- return frames.length;
- }
+// public int getStackFramesSize () {
+// return frames.length;
+// }
public boolean hasStackFrames () {
if (frames == null) {
return target;
}
- public void setDebugTarget(PHPDebugTarget target) {
- this.target = target;
- }
+// public void setDebugTarget(PHPDebugTarget target) {
+// this.target = target;
+// }
public ILaunch getLaunch() {
return this.getDebugTarget().getLaunch();
+++ /dev/null
-package net.sourceforge.phpdt.internal.debug.core.watch;
-
-public class PHPEvalException extends Exception {
-
- public PHPEvalException(String s) {
- super(s);
- }
-
-}
\ No newline at end of file