1 11 package org.eclipse.jface.text.contentassist; 12 13 import org.eclipse.jface.text.ITextViewer; 14 15 16 69 public interface IContentAssistant { 70 71 73 public final static int PROPOSAL_OVERLAY= 10; 74 75 public final static int PROPOSAL_REMOVE= 11; 76 77 public final static int PROPOSAL_STACKED= 12; 78 79 81 public final static int CONTEXT_INFO_ABOVE= 20; 82 83 public final static int CONTEXT_INFO_BELOW= 21; 84 85 86 91 void install(ITextViewer textViewer); 92 93 97 void uninstall(); 98 99 104 String showPossibleCompletions(); 105 106 111 String showContextInformation(); 112 113 121 IContentAssistProcessor getContentAssistProcessor(String contentType); 122 } 123 | Popular Tags |