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 / AbstractDebugConnection.java
1 /**
2  * 
3  */
4 package net.sourceforge.phpeclipse.xdebug.core;
5
6 /**
7  * @author Christian Perkonig
8  *
9  */
10 public abstract class AbstractDebugConnection implements IDebugConnection {
11         protected boolean fInitialized = false;
12         protected boolean fIsClosed = true;
13         
14         protected String fSessionID = "";
15         
16         public String getSessionID() {
17                 return fSessionID;
18         }
19         
20         public boolean isInitialized() {
21                 return fInitialized;
22         }
23         
24         public boolean isClosed() {
25                 return fIsClosed;
26         }
27 }