X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/CompilationUnitElementInfo.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/CompilationUnitElementInfo.java index 4ae1585..a25c0e3 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/CompilationUnitElementInfo.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/CompilationUnitElementInfo.java @@ -18,26 +18,29 @@ import net.sourceforge.phpdt.core.ISourceRange; /** * The length of this compilation unit's source code String */ - protected int fSourceLength; - + protected int sourceLength; + /** * Timestamp of original resource at the time this element * was opened or last updated. */ - protected long fTimestamp; + protected long timestamp; /** * Returns the length of the source string. */ public int getSourceLength() { - return fSourceLength; + return sourceLength; } protected ISourceRange getSourceRange() { - return new SourceRange(0, fSourceLength); + return new SourceRange(0, sourceLength); +} +protected boolean isOpen() { + return true; } /** * Sets the length of the source string. */ public void setSourceLength(int newSourceLength) { - fSourceLength = newSourceLength; + sourceLength = newSourceLength; } }