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

Examples of org.eclipse.php.internal.ui.folding.html.ProjectionModelNodeAdapterHTML


    if (node instanceof INodeNotifier && childLevel < MAX_CHILDREN) {
      final INodeNotifier notifier = (INodeNotifier) node;

      // try and get the adapter for the current node and update the
      // adapter with projection information
      final ProjectionModelNodeAdapterHTML adapter2 = (ProjectionModelNodeAdapterHTML) notifier
          .getExistingAdapter(ProjectionModelNodeAdapterHTML.class);
      if (adapter2 != null) {
        adapter2.updateAdapter(node);
      } else {
        // just call getadapter so the adapter is created and
        // automatically initialized
        notifier.getAdapterFor(ProjectionModelNodeAdapterHTML.class);
      }
View Full Code Here


        if (node instanceof INodeNotifier && childLevel < MAX_CHILDREN) {
            final INodeNotifier notifier = (INodeNotifier) node;

            // try and get the adapter for the current node and update the
            // adapter with projection information
            final ProjectionModelNodeAdapterHTML adapter2 = (ProjectionModelNodeAdapterHTML) notifier
                    .getExistingAdapter(ProjectionModelNodeAdapterHTML.class);
            if (adapter2 != null) {
                adapter2.updateAdapter(node);
            } else {
                // just call getadapter so the adapter is created and
                // automatically initialized
                notifier.getAdapterFor(ProjectionModelNodeAdapterHTML.class);
            }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.ui.folding.html.ProjectionModelNodeAdapterHTML

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.