/** * */ package net.sourceforge.phpeclipse.xdebug.core; /** * @author Christian Perkonig * */ public abstract class AbstractDebugConnection implements IDebugConnection { protected boolean fInitialized = false; protected boolean fIsClosed = true; protected String fSessionID = ""; public String getSessionID() { return fSessionID; } public boolean isInitialized() { return fInitialized; } public boolean isClosed() { return fIsClosed; } }