Package 

Class BaseNode

    • Constructor Summary

      Constructors 
      Constructor Description
      BaseNode()
    • Method Summary

      Modifier and Type Method Description
      abstract List<BaseNode> getChildNode() 重写此方法,获取子节点。如果没有子节点,返回 null 或者 空数组如果返回 null,则无法对子节点的数据进行新增和删除等操作
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BaseNode

        BaseNode()
    • Method Detail

      • getChildNode

         abstract List<BaseNode> getChildNode()

        重写此方法,获取子节点。如果没有子节点,返回 null 或者 空数组

        如果返回 null,则无法对子节点的数据进行新增和删除等操作