X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPExpression.java b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPExpression.java index 9ca57f1..80b40dc 100644 --- a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPExpression.java +++ b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPExpression.java @@ -1,14 +1,14 @@ /********************************************************************** -Copyright (c) 2000, 2002 IBM Corp. and others. -All rights reserved. This program and the accompanying materials -are made available under the terms of the Common Public License v1.0 -which accompanies this distribution, and is available at -http://www.eclipse.org/legal/cpl-v10.html - -Contributors: - IBM Corporation - Initial implementation - Vicente Fernando - www.alfersoft.com.ar -**********************************************************************/ + Copyright (c) 2000, 2002 IBM Corp. and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Common Public License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/legal/cpl-v10.html + + Contributors: + IBM Corporation - Initial implementation + Vicente Fernando - www.alfersoft.com.ar + **********************************************************************/ package net.sourceforge.phpdt.internal.debug.core.model; import org.eclipse.debug.core.ILaunch; @@ -18,41 +18,42 @@ import org.eclipse.debug.core.model.IValue; public class PHPExpression implements IExpression { - private PHPVariable inspectionResult; - private String expression; - - public PHPExpression(String expression, PHPVariable inspectionResult) { - this.inspectionResult = inspectionResult; - this.expression = expression; + private PHPVariable inspectionResult; - } + private String expression; - public String getExpressionText() { - return expression; - } + public PHPExpression(String expression, PHPVariable inspectionResult) { + this.inspectionResult = inspectionResult; + this.expression = expression; - public IValue getValue() { - return inspectionResult.getValue(); - } + } - public IDebugTarget getDebugTarget() { - return inspectionResult.getDebugTarget(); - } + public String getExpressionText() { + return expression; + } - public void dispose() { + public IValue getValue() { + return inspectionResult.getValue(); + } - } + public IDebugTarget getDebugTarget() { + return inspectionResult.getDebugTarget(); + } - public String getModelIdentifier() { - return this.getDebugTarget().getModelIdentifier(); - } + public void dispose() { - public ILaunch getLaunch() { - return this.getDebugTarget().getLaunch(); - } + } - public Object getAdapter(Class arg0) { - return null; - } + public String getModelIdentifier() { + return this.getDebugTarget().getModelIdentifier(); + } + + public ILaunch getLaunch() { + return this.getDebugTarget().getLaunch(); + } + + public Object getAdapter(Class arg0) { + return null; + } }