All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.dawnsci.analysis.api.tree.IFindInTree Maven / Gradle / Ivy

/*-
 * Copyright 2016 Diamond Light Source Ltd.
 *
 * 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
 */

package org.eclipse.dawnsci.analysis.api.tree;

/**
 * Interface for visitor pattern in breadth first search of tree files
 */
public interface IFindInTree {

	/**
	 * Return true if node link contain the values searched for
	 * @param node
	 * @return found
	 */
	boolean found(NodeLink node);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy