Examples of PropertySheetConfiguration


Examples of org.eclipse.wst.sse.ui.views.properties.PropertySheetConfiguration

      }
    }
  }

  protected PropertySheetConfiguration createPropertySheetConfiguration() {
    PropertySheetConfiguration cfg = null;
    ExtendedConfigurationBuilder builder = ExtendedConfigurationBuilder.getInstance();
    String[] ids = getConfigurationPoints();
    for (int i = 0; cfg == null && i < ids.length; i++) {
      cfg = (PropertySheetConfiguration) builder.getConfiguration(ExtendedConfigurationBuilder.PROPERTYSHEETCONFIGURATION, ids[i]);
    }
View Full Code Here

Examples of org.eclipse.wst.sse.ui.views.properties.PropertySheetConfiguration

      result = fOutlinePage;
    }
    // property sheet page, but only if the input's editable
    else if (IPropertySheetPage.class.equals(required) && isEditable()) {
      if (fPropertySheetPage == null || fPropertySheetPage.getControl() == null || fPropertySheetPage.getControl().isDisposed()) {
        PropertySheetConfiguration cfg = createPropertySheetConfiguration();
        if (cfg != null) {
          ConfigurablePropertySheetPage propertySheetPage = new ConfigurablePropertySheetPage();
          propertySheetPage.setConfiguration(cfg);
          fPropertySheetPage = propertySheetPage;
        }
View Full Code Here

Examples of org.eclipse.wst.sse.ui.views.properties.PropertySheetConfiguration

      IStructuredModel internalModel = getInternalModel();
      ((ConfigurableContentOutlinePage) fOutlinePage).setInputContentTypeIdentifier(internalModel.getContentTypeIdentifier());
      ((ConfigurableContentOutlinePage) fOutlinePage).setInput(internalModel);
    }
    if (fPropertySheetPage != null && fPropertySheetPage instanceof ConfigurablePropertySheetPage) {
      PropertySheetConfiguration cfg = createPropertySheetConfiguration();
      ((ConfigurablePropertySheetPage) fPropertySheetPage).setConfiguration(cfg);
    }
    disposeModelDependentFields();

    fShowInTargetIds = createShowInTargetIds();
View Full Code Here

Examples of org.eclipse.wst.sse.ui.views.properties.PropertySheetConfiguration

    }
   
  }

  protected PropertySheetConfiguration createPropertySheetConfiguration() {
    PropertySheetConfiguration cfg = null;
    ExtendedConfigurationBuilder builder = ExtendedConfigurationBuilder.getInstance();
    String[] ids = getConfigurationPoints();
    for (int i = 0; cfg == null && i < ids.length; i++) {
      cfg = (PropertySheetConfiguration) builder.getConfiguration(ExtendedConfigurationBuilder.PROPERTYSHEETCONFIGURATION, ids[i]);
    }
View Full Code Here

Examples of org.eclipse.wst.sse.ui.views.properties.PropertySheetConfiguration

      result = fOutlinePage;
    }
    // property sheet page, but only if the input's editable
    else if (IPropertySheetPage.class.equals(required) && isEditable()) {
      if (fPropertySheetPage == null || fPropertySheetPage.getControl() == null || fPropertySheetPage.getControl().isDisposed()) {
        PropertySheetConfiguration cfg = createPropertySheetConfiguration();
        if (cfg != null) {
          ConfigurablePropertySheetPage propertySheetPage = new ConfigurablePropertySheetPage();
          propertySheetPage.setConfiguration(cfg);
          fPropertySheetPage = propertySheetPage;
        }
View Full Code Here

Examples of org.eclipse.wst.sse.ui.views.properties.PropertySheetConfiguration

      IStructuredModel internalModel = getInternalModel();
      ((ConfigurableContentOutlinePage) fOutlinePage).setInputContentTypeIdentifier(internalModel.getContentTypeIdentifier());
      ((ConfigurableContentOutlinePage) fOutlinePage).setInput(internalModel);
    }
    if (fPropertySheetPage != null && fPropertySheetPage instanceof ConfigurablePropertySheetPage) {
      PropertySheetConfiguration cfg = createPropertySheetConfiguration();
      ((ConfigurablePropertySheetPage) fPropertySheetPage).setConfiguration(cfg);
    }
    disposeModelDependentFields();

    fShowInTargetIds = createShowInTargetIds();
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.