Package edu.ohio_state.khatchad.refactoring.visitor

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


  }

  public static Collection trimForest(Collection computationForest,
      Collection nonEnumerizableList) {
    final Collection ret = new LinkedHashSet(computationForest);
    final TreeTrimingVisitor visitor = new TreeTrimingVisitor(ret,
        nonEnumerizableList);

    // for each root in the computation forest
    for (final Iterator it = computationForest.iterator(); it.hasNext();) {
      final ComputationNode root = (ComputationNode) it.next();
View Full Code Here

TOP

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

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.