1 11 package org.eclipse.jdt.internal.debug.ui.contentassist; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.jdt.core.IType; 15 16 21 public interface IJavaDebugContentAssistContext { 22 23 29 public IType getType() throws CoreException; 30 31 39 public int getInsertionPosition() throws CoreException; 40 41 57 public String [][] getLocalVariables() throws CoreException; 58 59 65 public boolean isStatic() throws CoreException; 66 67 76 public String getSnippet(String snippet) throws CoreException; 77 } 78 | Popular Tags |