1 11 package org.eclipse.debug.core.model; 12 13 import org.eclipse.debug.core.DebugException; 14 15 26 public interface IWatchExpressionResult { 27 37 public IValue getValue(); 38 39 48 public boolean hasErrors(); 49 50 56 public String [] getErrorMessages(); 57 58 63 public String getExpressionText(); 64 65 75 public DebugException getException(); 76 } 77 | Popular Tags |