Package org.eclipse.wst.sse.ui.preferences

Examples of org.eclipse.wst.sse.ui.preferences.ICompletionProposalCategoriesConfigurationReader


   * @return the sort rank of this category
   */
  public int getPageSortRank(String contentTypeID) {
    int sortOrder = ICompletionProposalCategoriesConfigurationReader.DEFAULT_SORT_ORDER;
   
    ICompletionProposalCategoriesConfigurationReader properties =
      CompletionProposoalCatigoriesConfigurationRegistry.getDefault().getReadableConfiguration(contentTypeID);
    if(properties != null) {
      sortOrder = properties.getPageSortOrder(this.fId);
    }
   
    return sortOrder;
  }
View Full Code Here


   * @return the sort rank of this category
   */
  public int getDefaultPageSortRank(String contentTypeID) {
    int sortOrder = ICompletionProposalCategoriesConfigurationReader.DEFAULT_SORT_ORDER;
   
    ICompletionProposalCategoriesConfigurationReader properties =
      CompletionProposoalCatigoriesConfigurationRegistry.getDefault().getReadableConfiguration(contentTypeID);
    if(properties != null) {
      sortOrder = properties.getDefaultPageSortOrder(this.fId);
    }
   
    return sortOrder;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.sse.ui.preferences.ICompletionProposalCategoriesConfigurationReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.