Not in Use in new Version
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / core / XDebugValue.java
diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/XDebugValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/XDebugValue.java
deleted file mode 100644 (file)
index a7ea108..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Created on 23.11.2004
- *
- * TODO To change the template for this generated file go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
-package net.sourceforge.phpeclipse.xdebug.core;
-
-import org.eclipse.debug.core.DebugException;
-import org.eclipse.debug.core.model.IValue;
-import org.eclipse.debug.core.model.IVariable;
-
-/**
- * @author Axel
- *
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
-public class XDebugValue  extends XDebugElement implements IValue {
-       
-       private String fValue;
-       
-       public XDebugValue(XDebugTarget target, String value) {
-               super(target);
-               fValue = value;
-       }
-       
-       /* (non-Javadoc)
-        * @see org.eclipse.debug.core.model.IValue#getReferenceTypeName()
-        */
-       public String getReferenceTypeName() throws DebugException {
-               try {
-                       Integer.parseInt(fValue);
-               } catch (NumberFormatException e) {
-                       return "text";
-               }
-               return "integer";
-       }
-       /* (non-Javadoc)
-        * @see org.eclipse.debug.core.model.IValue#getValueString()
-        */
-       public String getValueString() throws DebugException {
-               return fValue;
-       }
-       /* (non-Javadoc)
-        * @see org.eclipse.debug.core.model.IValue#isAllocated()
-        */
-       public boolean isAllocated() throws DebugException {
-               return true;
-       }
-       /* (non-Javadoc)
-        * @see org.eclipse.debug.core.model.IValue#getVariables()
-        */
-       public IVariable[] getVariables() throws DebugException {
-               return new IVariable[0];
-       }
-       /* (non-Javadoc)
-        * @see org.eclipse.debug.core.model.IValue#hasVariables()
-        */
-       public boolean hasVariables() throws DebugException {
-               return false;
-       }
-}