cdc.io.data.Leaf Maven / Gradle / Ivy
package cdc.io.data;
/**
* Interface implemented by leaf nodes (they have no children).
*
* @author Damien Carbonne
*
*/
public interface Leaf extends Child {
// Nothing to declare
}
package cdc.io.data;
/**
* Interface implemented by leaf nodes (they have no children).
*
* @author Damien Carbonne
*
*/
public interface Leaf extends Child {
// Nothing to declare
}