Package org.eclipse.php.internal.ui.folding

Examples of org.eclipse.php.internal.ui.folding.PHPFoldingStructureProviderRegistry


    fProviderPreferences = new HashMap();
    fProviderControls = new HashMap();
  }

  private Map createListModel() {
    PHPFoldingStructureProviderRegistry reg = PHPUiPlugin.getDefault()
        .getFoldingStructureProviderRegistry();
    reg.reloadExtensions();
    PHPFoldingStructureProviderDescriptor[] descs = reg
        .getFoldingProviderDescriptors();
    Map map = new HashMap();
    for (PHPFoldingStructureProviderDescriptor element : descs) {
      map.put(element.getId(), element);
    }
View Full Code Here


   *         <code>IPHPFoldingStructureProvider</code>
   * @since 3.1
   */
  public synchronized PHPFoldingStructureProviderRegistry getFoldingStructureProviderRegistry() {
    if (fFoldingStructureProviderRegistry == null)
      fFoldingStructureProviderRegistry = new PHPFoldingStructureProviderRegistry();
    return fFoldingStructureProviderRegistry;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.ui.folding.PHPFoldingStructureProviderRegistry

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.