Examples of ExtendedConfigurationBuilder


Examples of org.eclipse.wst.sse.ui.internal.ExtendedConfigurationBuilder

   *
   * @return
   */
  protected String[] createShowInTargetIds() {
    List allIds = new ArrayList(0);
    ExtendedConfigurationBuilder builder = ExtendedConfigurationBuilder.getInstance();
    String[] configurationIds = getConfigurationPoints();
    for (int i = 0; i < configurationIds.length; i++) {
      String[] definitions = builder.getDefinitions("showintarget", configurationIds[i]); //$NON-NLS-1$
      for (int j = 0; j < definitions.length; j++) {
        String someIds = definitions[j];
        if (someIds != null && someIds.length() > 0) {
          String[] ids = StringUtils.unpack(someIds);
          for (int k = 0; k < ids.length; k++) {
View Full Code Here

Examples of org.eclipse.wst.sse.ui.internal.ExtendedConfigurationBuilder

        contentTypeId = IContentTypeManager.CT_TEXT;
      }
     
      ITextViewer viewer = getTextViewer();
      if(viewer instanceof ProjectionViewer) {
        ExtendedConfigurationBuilder builder = ExtendedConfigurationBuilder.getInstance();
       
        IContentType type = Platform.getContentTypeManager().getContentType(contentTypeId);
        while(fFoldingStrategy == null && type != null) {
          fFoldingStrategy =(AbstractStructuredFoldingStrategy) builder.getConfiguration(
              AbstractStructuredFoldingStrategy.ID, type.getId());
       
          type = type.getBaseType();
        }
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.