Uses of Interface
org.zkoss.zk.ui.metainfo.NodeInfo
-
Packages that use NodeInfo Package Description org.zkoss.zk.ui.impl org.zkoss.zk.ui.metainfo org.zkoss.zk.ui.sys -
-
Uses of NodeInfo in org.zkoss.zk.ui.impl
Method parameters in org.zkoss.zk.ui.impl with type arguments of type NodeInfo Modifier and Type Method Description java.lang.StringUiEngineImpl. getNativeContent(Component comp, java.util.List<NodeInfo> children, Native.Helper helper) -
Uses of NodeInfo in org.zkoss.zk.ui.metainfo
Classes in org.zkoss.zk.ui.metainfo that implement NodeInfo Modifier and Type Class Description classAttributesInfoRepresents a map of custom attributes of a component definition (ComponentDefinition).classComponentInfoRepresents a component instance defined in a ZUML page.classNativeInfoRepresents the component information about the native components.classPageDefinitionA page definition.classShadowInfoRepresent a shadow element.classTemplateInfoRepresent a template element.classTextInfoRepresents a text.classVariablesInfoThe information about the variables element in the ZUML page.classZkInfoRepresents the zk element in a ZUML page.classZScriptInfoRepresents a zscript element.Methods in org.zkoss.zk.ui.metainfo that return NodeInfo Modifier and Type Method Description NodeInfoNodeInfo. getParent()Returns the parent, or null if it has no parent.NodeInfoPageDefinition. getParent()Returns the parent (always null).Methods in org.zkoss.zk.ui.metainfo that return types with arguments of type NodeInfo Modifier and Type Method Description java.util.List<NodeInfo>NodeInfo. getChildren()Returns a readonly list of children.java.util.List<NodeInfo>PageDefinition. getChildren()java.util.List<NodeInfo>NativeInfo. getEpilogChildren()Returns a readonly list of the epilog children (NativeInfo).java.util.List<NodeInfo>NativeInfo. getPrologChildren()Returns a readonly list of the prolog children (NativeInfo).Methods in org.zkoss.zk.ui.metainfo with parameters of type NodeInfo Modifier and Type Method Description voidNativeInfo. addEpilogChild(NodeInfo child)Adds an epilog child.voidNativeInfo. addPrologChild(NodeInfo child)Adds a prolog child.voidComponentInfo. appendChild(NodeInfo child)Adds a child.voidNodeInfo. appendChild(NodeInfo child)Append a childvoidPageDefinition. appendChild(NodeInfo child)voidShadowInfo. appendChild(NodeInfo child)Adds a child.ComponentInfoLanguageDefinition. newLabelInfo(NodeInfo parent, java.lang.String text)Constructs and returns anComponentInfofor the specified parent and text.booleanNodeInfo. removeChild(NodeInfo child)Removes a child.booleanPageDefinition. removeChild(NodeInfo child)Constructors in org.zkoss.zk.ui.metainfo with parameters of type NodeInfo Constructor Description AttributesInfo(NodeInfo parent, java.util.Map<java.lang.String,java.lang.String> attrs, java.lang.String scope, java.lang.String composite, ConditionImpl cond)Constructor.AttributesInfo(NodeInfo parent, java.util.Map<java.lang.String,java.lang.String> attrs, java.lang.String scope, ConditionImpl cond)The same as AttributesInfo(parent, attrs, scope, "none", cond).ComponentInfo(NodeInfo parent, ComponentDefinition compdef, java.lang.String tag)Constructs the information about how to create component.NativeInfo(NodeInfo parent, ComponentDefinition compdef, java.lang.String tag)Constructs a native info with a parent.ShadowInfo(NodeInfo parent, ComponentDefinition compdef, java.lang.String tag, ConditionImpl cond)Creates a shadow.TemplateInfo(NodeInfo parent, java.lang.String name, java.lang.String src, java.util.Map<java.lang.String,java.lang.String> params, ConditionImpl cond)Creates a template.TextInfo(NodeInfo parent, java.lang.String text)VariablesInfo(NodeInfo parent, java.util.Map<java.lang.String,java.lang.String> vars, boolean local, java.lang.String composite, ConditionImpl cond)Constructor.VariablesInfo(NodeInfo parent, java.util.Map<java.lang.String,java.lang.String> vars, boolean local, ConditionImpl cond)The same as VariablesInfo(parent, vars, locale, "none", cond).ZkInfo(NodeInfo parent, ConditionImpl cond)Constructs a ZK info.ZScriptInfo(NodeInfo parent, java.lang.String zslang, java.lang.String url, org.zkoss.util.resource.Locator locator, ConditionImpl cond)Constructs aZScriptInfowith an URL, which might contain an EL expression.ZScriptInfo(NodeInfo parent, java.lang.String zslang, java.lang.String content, ConditionImpl cond)Creates aZScriptInfowith the content directly.ZScriptInfo(NodeInfo parent, java.lang.String zslang, java.net.URL url, ConditionImpl cond)Create aZScriptInfowith an URL that is used to load the content. -
Uses of NodeInfo in org.zkoss.zk.ui.sys
Method parameters in org.zkoss.zk.ui.sys with type arguments of type NodeInfo Modifier and Type Method Description java.lang.StringUiEngine. getNativeContent(Component comp, java.util.List<NodeInfo> children, Native.Helper helper)Retrieve the native content for a property of the specified component.
-