Uses of Class
de.uni_paderborn.fujaba.codegen.digester.XRule

Packages that use XRule
de.uni_paderborn.fujaba.codegen.digester   
de.uni_paderborn.fujaba.codegen.digester.rules   
 

Uses of XRule in de.uni_paderborn.fujaba.codegen.digester
 

Methods in de.uni_paderborn.fujaba.codegen.digester with parameters of type XRule
 void XDigester.addRule(java.lang.String pattern, XRule rule)
          Register a new Rule matching the specified pattern.
 

Uses of XRule in de.uni_paderborn.fujaba.codegen.digester.rules
 

Subclasses of XRule in de.uni_paderborn.fujaba.codegen.digester.rules
 class FUICallMethodRule
          Struts-Digester Rule : extend default CallMethodRule
Rule implementation that calls a method on the top (parent) object, passing arguments collected from subsequent CallParamRule rules or from the body of this element.
 class XAddToRule
          Rule implementation that calls a method on the (top-1) (parent) object, passing the top object (child) as an argument.
 class XCallMethodRule
          Rule implementation that calls a method on the top (parent) object, passing arguments collected from subsequent CallParamRule rules or from the body of this element.
 class XCallParamRule
          Rule implementation that saves a parameter from either an attribute of this element, or from the element body, to be used in a call generated by a surrounding CallMethodRule rule.
 class XObjectCreateRule
          Rule implementation that creates a new object and pushes it onto the object stack.
 class XSetNextRule
          Rule implementation that calls a method on the (top-1) (parent) object, passing the top object (child) as an argument.
 class XSetPropertiesRule
          Rule implementation that sets properties on the object at the top of the stack, based on attributes with corresponding names.
 class XSetPropertyRule
          Rule implementation that sets an individual property on the object at the top of the stack, based on attributes with specified names.
 class XSetTopRule
          Rule implementation that calls a method on the top (parent) object, passing the (top-1) (child) object as an argument.