1 11 package org.eclipse.help.search; 12 13 import org.eclipse.help.IHelpResource; 14 15 26 public interface ISearchEngineResult { 27 32 String getLabel(); 33 34 43 String getDescription(); 44 45 53 IHelpResource getCategory(); 54 55 80 String getHref(); 81 82 89 float getScore(); 90 91 109 boolean getForceExternalWindow(); 110 111 126 String toAbsoluteHref(String href, boolean frames); 127 } 128 | Popular Tags |