1 11 package org.eclipse.jdt.ui.text.java; 12 13 import org.eclipse.jface.text.contentassist.IContextInformation; 14 15 import org.eclipse.jdt.core.ICompilationUnit; 16 17 18 28 public interface IJavadocCompletionProcessor { 29 30 35 int RESTRICT_TO_MATCHING_CASE= 1; 36 37 38 49 IContextInformation[] computeContextInformation(ICompilationUnit cu, int offset); 50 51 52 66 IJavaCompletionProposal[] computeCompletionProposals(ICompilationUnit cu, int offset, int length, int flags); 67 68 69 75 String getErrorMessage(); 76 } 77 | Popular Tags |