1 19 package org.netbeans.api.gsf; 20 21 import java.util.Set ; 22 23 import javax.swing.ImageIcon ; 24 25 26 31 public interface CompletionProposal { 32 33 int getAnchorOffset(); 34 35 Element getElement(); 36 37 String getName(); 38 39 String getInsertPrefix(); 40 41 String getSortText(); 42 43 String getLhsHtml(); 44 45 String getRhsHtml(); 46 47 ElementKind getKind(); 48 49 ImageIcon getIcon(); 50 51 Set <Modifier> getModifiers(); 52 } 53 | Popular Tags |