类 ContainerFunctionalKiteElement
- java.lang.Object
-
- com.github.developframework.kite.core.element.AbstractKiteElement
-
- com.github.developframework.kite.core.element.FunctionalKiteElement
-
- com.github.developframework.kite.core.element.ContainerFunctionalKiteElement
-
- 所有已实现的接口:
ContainChildElementable,KiteElement
- 直接已知子类:
CaseKiteElement,ElseKiteElement,IfKiteElement
public abstract class ContainerFunctionalKiteElement extends FunctionalKiteElement implements ContainChildElementable
容器功能节点- 作者:
- qiuzhenhao
-
-
字段概要
字段 修饰符和类型 字段 说明 protected List<KiteElement>childElements-
从类继承的字段 com.github.developframework.kite.core.element.AbstractKiteElement
configuration, templateLocation
-
-
构造器概要
构造器 构造器 说明 ContainerFunctionalKiteElement(KiteConfiguration configuration, TemplateLocation templateLocation)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidaddChildElement(KiteElement element)增加子节点Iterator<KiteElement>childElementIterator()返回子节点列表的迭代器voidcopyChildElement(ContainChildElementable otherContainer)复制其它容器的子节点List<KiteElement>getChildKiteElements()返回子节点列表booleanisChildElementEmpty()判断是否是空子节点-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 com.github.developframework.kite.core.element.KiteElement
createJsonProcessor, createXmlProcessor
-
-
-
-
字段详细资料
-
childElements
protected List<KiteElement> childElements
-
-
构造器详细资料
-
ContainerFunctionalKiteElement
public ContainerFunctionalKiteElement(KiteConfiguration configuration, TemplateLocation templateLocation)
-
-
方法详细资料
-
addChildElement
public void addChildElement(KiteElement element)
从接口复制的说明:ContainChildElementable增加子节点- 指定者:
addChildElement在接口中ContainChildElementable- 参数:
element- 子节点
-
copyChildElement
public void copyChildElement(ContainChildElementable otherContainer)
从接口复制的说明:ContainChildElementable复制其它容器的子节点- 指定者:
copyChildElement在接口中ContainChildElementable- 参数:
otherContainer- 其它容器
-
childElementIterator
public final Iterator<KiteElement> childElementIterator()
从接口复制的说明:ContainChildElementable返回子节点列表的迭代器- 指定者:
childElementIterator在接口中ContainChildElementable- 返回:
- 子节点列表的迭代器
-
getChildKiteElements
public final List<KiteElement> getChildKiteElements()
从接口复制的说明:ContainChildElementable返回子节点列表- 指定者:
getChildKiteElements在接口中ContainChildElementable- 返回:
- 子节点列表
-
isChildElementEmpty
public final boolean isChildElementEmpty()
从接口复制的说明:ContainChildElementable判断是否是空子节点- 指定者:
isChildElementEmpty在接口中ContainChildElementable- 返回:
- 判断结果
-
-