From fdaafeb45e4855334fd5ddc53035d41b94659db0 Mon Sep 17 00:00:00 2001 From: kpouer Date: Fri, 24 Jan 2003 11:36:05 +0000 Subject: [PATCH] The name field is now protected (PHPVarDeclaration needs) --- .../phpeclipse/phpeditor/phpparser/PHPSegment.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPSegment.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPSegment.java index 9e387f4..b3aaf25 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPSegment.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPSegment.java @@ -8,7 +8,7 @@ import org.eclipse.jface.text.Position; * @author khartlage */ public abstract class PHPSegment { - private String name; + protected String name; private Position position; private Object parent; -- 1.7.1