1 11 package org.eclipse.jface.text.contentassist; 12 13 import org.eclipse.swt.graphics.Image; 14 import org.eclipse.swt.graphics.Point; 15 16 import org.eclipse.jface.text.IDocument; 17 18 19 72 public interface ICompletionProposal { 73 74 79 void apply(IDocument document); 80 81 94 Point getSelection(IDocument document); 95 96 106 String getAdditionalProposalInfo(); 107 108 113 String getDisplayString(); 114 115 121 Image getImage(); 122 123 130 IContextInformation getContextInformation(); 131 } 132 | Popular Tags |