Importing the XDebugProxy code in the HEAD. The repo was tagged with T_BEFORE_XDEBUGP...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / core / BreakpointResponseData.java
diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/BreakpointResponseData.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/BreakpointResponseData.java
deleted file mode 100644 (file)
index b0f3444..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package net.sourceforge.phpeclipse.xdebug.core;
-
-public class BreakpointResponseData extends ResponseData {
-
-       private int BreakpointID = -1;
-
-       BreakpointResponseData(int transactionID, int breakpointID) {
-               super(transactionID);
-               BreakpointID = breakpointID;
-       }
-
-       // public BreakpointResponseData(ResponseData data,int breakpointID) {
-       // setTransactionID(data.getTransactionID());
-       // BreakpointID=breakpointID;
-       // }
-
-       public int getBreakpointID() {
-               return BreakpointID;
-       }
-
-       public void setBreakpointID(int breakpointID) {
-               BreakpointID = breakpointID;
-       }
-
-}