/** * */ package org.streaminer.stream.classifier.tree; import java.io.Serializable; /** * <p> * This interface defines node information associated with data nodes * in a graph or a tree. The node information may be statistics, the * node's name, etc. * </p> * * @author Christian Bockermann <christian.bockermann@udo.edu> * */ public interface NodeInfo extends Serializable { }