Examples of PHPDebugElementAdapterFactory


Examples of org.eclipse.php.internal.debug.ui.views.variables.PHPDebugElementAdapterFactory

    // class, we insert the
    // factory before any other factory.
    AdapterManager manager = (AdapterManager) Platform.getAdapterManager();
    List list = (List) manager.getFactories()
        .get(IVariable.class.getName());
    PHPDebugElementAdapterFactory propertiesFactory = new PHPDebugElementAdapterFactory();
    manager.registerAdapters(propertiesFactory, IVariable.class);
    // In case the list had some factories, make sure our factory is the
    // first in the list.
    if (list != null && list.size() > 1) {
      list.remove(propertiesFactory);
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.