Package edu.ohio_state.khatchad.refactoring.visitor

Examples of edu.ohio_state.khatchad.refactoring.visitor.ParameterProcessingVisitor


        if (match.getAccuracy() == SearchMatch.A_ACCURATE
            && !match.isInsideDocComment()) {
          IJavaElement elem = (IJavaElement) match.getElement();
          ASTNode node = Util.getASTNode(elem,
              ASTNodeProcessor.this.monitor);
          ParameterProcessingVisitor visitor = new ParameterProcessingVisitor(
              paramNumber, match.getOffset());
          node.accept(visitor);
          ASTNodeProcessor.this.found.addAll(visitor.getElements());

          for (Iterator it = visitor.getExpressions().iterator(); it
              .hasNext();) {
            Expression exp = (Expression) it.next();
            ASTNodeProcessor.this.processExpression(exp);
          }
        }
View Full Code Here

TOP

Related Classes of edu.ohio_state.khatchad.refactoring.visitor.ParameterProcessingVisitor

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.