1 12 package org.eclipse.jdt.ui.text.java; 13 14 import org.eclipse.core.runtime.CoreException; 15 16 17 23 public interface IQuickAssistProcessor { 24 25 32 boolean hasAssists(IInvocationContext context) throws CoreException; 33 34 44 IJavaCompletionProposal[] getAssists(IInvocationContext context, IProblemLocation[] locations) throws CoreException; 45 46 } 47 | Popular Tags |