1) Indeces of arrays will be surrounded by [''], so it's easier to distinguish betwee...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugWatchExpressionFactoryAdapter.java
1 package net.sourceforge.phpeclipse.xdebug.php.model;
2
3 import org.eclipse.core.runtime.CoreException;
4 import org.eclipse.debug.core.model.IVariable;
5 import org.eclipse.debug.ui.actions.IWatchExpressionFactoryAdapter;
6
7
8 public class XDebugWatchExpressionFactoryAdapter implements IWatchExpressionFactoryAdapter {
9     public String createWatchExpression (IVariable variable) throws CoreException
10     {
11         return ((XDebugVariable) variable).getNameFull (); 
12     }
13 }