1 11 package org.eclipse.jdt.debug.core; 12 13 14 import org.eclipse.debug.core.DebugException; 15 16 24 public interface IJavaFieldVariable extends IJavaVariable { 25 26 35 public boolean isTransient() throws DebugException; 36 37 46 public boolean isVolatile() throws DebugException; 47 48 53 public IJavaType getDeclaringType(); 54 55 62 public IJavaObject getReceiver(); 63 64 70 public IJavaReferenceType getReceivingType(); 71 72 } 73 74 75 | Popular Tags |