From: robekras Date: Sat, 22 Oct 2005 15:28:46 +0000 (+0000) Subject: 1) Made setName a public method. (For the 'unnamed root node' workaround see PHPDBGIn... X-Git-Url: http://secure.phpeclipse.com 1) Made setName a public method. (For the 'unnamed root node' workaround see PHPDBGInterface). --- diff --git a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPVariable.java b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPVariable.java index 94fd528..91b2a78 100644 --- a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPVariable.java +++ b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPVariable.java @@ -62,7 +62,7 @@ public class PHPVariable implements IVariable { * * @param name */ - private void setName (String name) { + public void setName (String name) { if ((fParent == null) || // If we have no parent for this variable (fParent.getName () == "")) { // or we have a parent which is just a simple node ??? fLongName = name; // Set the long name