1 20 21 package org.apache.directory.ldapstudio.browser.core.internal.search; 22 23 24 import org.eclipse.search.ui.ISearchPageScoreComputer; 25 26 27 public class LdapSearchPageScoreComputer implements ISearchPageScoreComputer 28 { 29 30 public static final String LDAP_SEARCH_PAGE_ID = "org.apache.directory.ldapstudio.browser.ui.search.SearchPage"; 32 33 public int computeScore( String pageId, Object input ) 34 { 35 if ( pageId.equals( LDAP_SEARCH_PAGE_ID ) ) 36 { 37 return 90; 38 } 39 return 0; 40 } 41 42 } 43 | Popular Tags |