Package org.eclipse.php.internal.core.corext.dom

Examples of org.eclipse.php.internal.core.corext.dom.Selection


      ISourceModule typeRoot) {
    try {
      Program root = getAST(typeRoot);
      if (root == null)
        return oldSourceRange;
      Selection selection = Selection.createFromStartLength(
          oldSourceRange.getOffset(), oldSourceRange.getLength());
      SelectionAnalyzer selAnalyzer = new SelectionAnalyzer(selection,
          true);
      root.accept(selAnalyzer);
      return internalGetNewSelectionRange(oldSourceRange, typeRoot,
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.corext.dom.Selection

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.