1 11 package org.eclipse.jdt.debug.core; 12 13 14 import org.eclipse.debug.core.DebugException; 15 import org.eclipse.debug.core.model.IVariable; 16 17 24 public interface IJavaVariable extends IVariable, IJavaModifiers { 25 26 38 public String getSignature() throws DebugException; 39 40 56 public String getGenericSignature() throws DebugException; 57 58 69 public IJavaType getJavaType() throws DebugException; 70 71 81 public boolean isLocal() throws DebugException; 82 83 } 84 85 86 | Popular Tags |