01: package com.jamonapi.utils;
02:
03: /** A tag interface to indicate a leaf node in a tree/heirarchical relationship. For example if a file system is viewed as a
04: * heirarchical relationship then directories would be the CompositeNode and each file would be the LeafNode. TreeNode's can
05: * be viewed as the top level of the heirarchy.
06: **/
07:
08: public interface LeafNode {
09:
10: }
|