package net.sourceforge.phpeclipse.xdebug.php.model; import org.eclipse.core.runtime.CoreException; import org.eclipse.debug.core.model.IVariable; import org.eclipse.debug.ui.actions.IWatchExpressionFactoryAdapter; public class XDebugWatchExpressionFactoryAdapter implements IWatchExpressionFactoryAdapter { public String createWatchExpression (IVariable variable) throws CoreException { return ((XDebugVariable) variable).getNameFull (); } }