blob: 034e23302112e0419f271be4cffa4185eebc31f2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 Google, Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Stefan Xenos (Google) - Initial implementation
*******************************************************************************/
package org.eclipse.jdt.internal.core.nd;
import org.eclipse.core.runtime.CoreException;
public interface INdVisitor {
/**
* Walk the nodes in a {@link Nd}. Return true to visit the children of
* this node, or false to skip to the next sibling of this node.
* Throw CoreException to stop the visit.
*
* @param node being visited
* @return whether to visit children
*/
public boolean visit(INdNode node) throws CoreException;
/**
* All children have been visited, about to go back to the parent.
*
* @param node that has just completed visitation
* @throws CoreException
*/
public void leave(INdNode node) throws CoreException;
}