Home » Mojarra-2.0.1 » javax.faces.view.facelets » [javadoc | source]
javax.faces.view.facelets
abstract public class: MetaRuleset [javadoc | source]
java.lang.Object
   javax.faces.view.facelets.MetaRuleset

A mutable set of rules to be used in auto-wiring state to a particular object instance. Rules assigned to this object will be composed into a single Metadata instance which will encapsulate the ruleset.

Method from javax.faces.view.facelets.MetaRuleset Summary:
add,   addRule,   alias,   finish,   ignore,   ignoreAll
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.faces.view.facelets.MetaRuleset Detail:
 abstract public MetaRuleset add(Metadata mapper)

    Add another Metadata to this ruleset, returning this.

 abstract public MetaRuleset addRule(MetaRule rule)

    Add another MetaRule to this ruleset, returning this.

 abstract public MetaRuleset alias(String attribute,
    String property)

    Customize this MetaRuleset by removing the attribute named by argument attribute and re-adding it under the name given by the argument property, returning this.

 abstract public Metadata finish()

    Take actions to apply the rule.

 abstract public MetaRuleset ignore(String attribute)

    Customize this MetaRuleset instance to advise it to ignore the attribute named by the attribute argument, returning this.

 abstract public MetaRuleset ignoreAll()

    Customize this MetaRuleset instance to advise it to ignore all attributes, returning this.