blob: 148f2ea7a1d56c984978fd779550e403a358a377 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2004 IBM Corporation 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:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.tools;
/**
* This interface is implemented by objects that visit trees made of
* <code>TreeContentProviderNode</code> objects.
*
* @see org.eclipse.core.tools.TreeContentProviderNode#accept(ITreeNodeVisitor)
*/
public interface ITreeNodeVisitor {
/**
* Visits the given node.
*
* @param node the node to visit
* @return <code>true</code> if the node's child nodes should be visited;
* <code>false</code> if they should be skipped
*/
public boolean visit(TreeContentProviderNode node);
}