information-system-model/src/main/java/org/gcube/informationsystem/tree/NodeElaborator.java

11 lines
195 B
Java

package org.gcube.informationsystem.tree;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface NodeElaborator<T> {
public void elaborate(Node<T> node, int level) throws Exception;
}