Package org.zkoss.zk.ui.metainfo
Class AttributesInfo
- java.lang.Object
-
- org.zkoss.zk.ui.metainfo.AttributesInfo
-
public class AttributesInfo extends java.lang.ObjectRepresents a map of custom attributes of a component definition (ComponentDefinition). It is equivalent to the custom-attributes element.Note: it is serializable.
- Author:
- tomyeh
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors 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).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendChild(NodeInfo child)Append a childvoidapply(Component comp)Applies the custom attributes.voidapply(Page page)Applies the custom attributes.java.util.Map<java.lang.String,java.lang.Object>getAttrs()Returns the internal attributes if any.java.util.List<NodeInfo>getChildren()Returns a readonly list of children.java.lang.StringgetComposite()Returns the composite type: "none", "list" or "map".EvaluatorgetEvaluator()Returns the evaluator.EvaluatorRefgetEvaluatorRef()Returns the evaluator reference.PageDefinitiongetPageDefinition()Returns the page definition, i.e., the root node, or null if not available.NodeInfogetParent()Returns the parent, or null if it has no parent.java.lang.StringgetScope()Returns the scope, or null if it is not associated with a scope.booleanisEffective(Component comp)Used to evaluate whether it is effective.booleanisEffective(Page page)Used to evaluate whether it is effective.booleanremoveChild(NodeInfo child)Removes a child.voidsetCondition(ConditionImpl cond)Sets the effectiveness condition.java.lang.StringtoString()booleanwithCondition()Tests if the condition is set
-
-
-
Constructor Detail
-
AttributesInfo
public AttributesInfo(NodeInfo parent, java.util.Map<java.lang.String,java.lang.String> attrs, java.lang.String scope, java.lang.String composite, ConditionImpl cond)
Constructor.- Parameters:
attrs- the custom attributes (String name, String value). Once called, the caller shall not access attrs again -- it belongs to this object.scope- specifies the scope.composite- indicates the composite type. It can be one of "none", "list" or "map". If null or empty, "none" is assumed.- Throws:
java.lang.IllegalArgumentException- if the composite type is illegal.- Since:
- 3.0.6
-
AttributesInfo
public 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).- Parameters:
attrs- the custom attributes (String name, String value). Once called, the caller shall not access attrs again -- it belongs to this object.scope- specifies the scope.
-
-
Method Detail
-
getScope
public java.lang.String getScope()
Returns the scope, or null if it is not associated with a scope.Notice that, prior to 5.0.8, "component" is returned if it is not associated with a scope (which is not correct since this info might be associated with a page).
- Since:
- 3.0.6
-
getComposite
public java.lang.String getComposite()
Returns the composite type: "none", "list" or "map".- Since:
- 3.0.6
-
apply
public void apply(Component comp)
Applies the custom attributes.Note: this method does nothing if
Condition.isEffective(org.zkoss.zk.ui.Component)returns false.
-
apply
public void apply(Page page)
Applies the custom attributes.Note: this method does nothing if
Condition.isEffective(org.zkoss.zk.ui.Component)returns false.
-
getAttrs
public java.util.Map<java.lang.String,java.lang.Object> getAttrs()
Returns the internal attributes if any.- Since:
- 10.0.0
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
setCondition
public void setCondition(ConditionImpl cond)
Sets the effectiveness condition.
-
withCondition
public boolean withCondition()
Tests if the condition is set
-
isEffective
public boolean isEffective(Component comp)
Description copied from interface:ConditionUsed to evaluate whether it is effective.- Specified by:
isEffectivein interfaceCondition- Parameters:
comp- used as the self variable. Ignored if null.
-
isEffective
public boolean isEffective(Page page)
Description copied from interface:ConditionUsed to evaluate whether it is effective.- Specified by:
isEffectivein interfaceCondition- Parameters:
page- used as the self variable. Ignored if null.
-
getEvaluatorRef
public EvaluatorRef getEvaluatorRef()
Description copied from interface:NodeInfoReturns the evaluator reference.- Specified by:
getEvaluatorRefin interfaceNodeInfo
-
getPageDefinition
public PageDefinition getPageDefinition()
Description copied from interface:NodeInfoReturns the page definition, i.e., the root node, or null if not available.- Specified by:
getPageDefinitionin interfaceNodeInfo
-
getEvaluator
public Evaluator getEvaluator()
Description copied from interface:NodeInfoReturns the evaluator.All nodes in the same ZUML tree has the same evaluator reference (inherited from the root node,
PageDefinition.getEvaluatorRef()).- Specified by:
getEvaluatorin interfaceNodeInfo
-
getParent
public NodeInfo getParent()
Description copied from interface:NodeInfoReturns the parent, or null if it has no parent.
-
getChildren
public java.util.List<NodeInfo> getChildren()
Description copied from interface:NodeInfoReturns a readonly list of children.Note: the returned list is readonly. To modify, please use
NodeInfo.appendChild(org.zkoss.zk.ui.metainfo.NodeInfo)andNodeInfo.removeChild(org.zkoss.zk.ui.metainfo.NodeInfo)instead.- Specified by:
getChildrenin interfaceNodeInfo
-
appendChild
public void appendChild(NodeInfo child)
Description copied from interface:NodeInfoAppend a child- Specified by:
appendChildin interfaceNodeInfo
-
removeChild
public boolean removeChild(NodeInfo child)
Description copied from interface:NodeInfoRemoves a child.- Specified by:
removeChildin interfaceNodeInfo
-
-