Uses of Interface
org.webmacro.engine.Builder

Packages that use Builder
org.webmacro.directive   
org.webmacro.engine   
org.webmacro.parser   
 

Uses of Builder in org.webmacro.directive
 

Classes in org.webmacro.directive that implement Builder
 class DirectiveBuilder
          DirectiveBuilder manages the building of directives.
 

Uses of Builder in org.webmacro.engine
 

Classes in org.webmacro.engine that implement Builder
 class BlockBuilder
          A block represents the text between two {}'s in a template, or else the text that begins at the start of the template and runs until its end ({}'s around the whole document are not required).
static class Expression.AddBuilder
           
static class Expression.AndBuilder
           
static class Expression.BinaryOperationBuilder
           
static class Expression.CompareEqBuilder
           
static class Expression.CompareGeBuilder
           
static class Expression.CompareGtBuilder
           
static class Expression.CompareLeBuilder
           
static class Expression.CompareLtBuilder
           
static class Expression.CompareNeBuilder
           
static class Expression.DivideBuilder
           
static class Expression.MultiplyBuilder
           
static class Expression.NotBuilder
           
static class Expression.OrBuilder
           
static class Expression.SubtractBuilder
           
static class Expression.UnaryOperationBuilder
           
 class ListBuilder
           
 class NullBuilder
           
 class ParamBuilder
           
 class PropertyMethodBuilder
           
 class QuotedStringBuilder
           
 class VariableBuilder
           
 

Uses of Builder in org.webmacro.parser
 

Classes in org.webmacro.parser that implement Builder
 class ParserBlockBuilder
          ParserBlockBuilder extends BlockBuilder, and should only be used by the WMParser_impl parser.
 

Methods in org.webmacro.parser that return Builder
 Builder WMParser_impl.LValue()
           
 Builder WMParser_impl.VariableReference()
           
 Builder WMParser_impl.QuotedString()
           
 Builder WMParser_impl.StringArg()