Uses of Class
org.webmacro.engine.BuildContext

Packages that use BuildContext
org.webmacro.directive   
org.webmacro.engine   
 

Uses of BuildContext in org.webmacro.directive
 

Methods in org.webmacro.directive with parameters of type BuildContext
 java.lang.Object TypeDirective.build(DirectiveBuilder builder, BuildContext bc)
          configure directive for this run and return 'this'
 java.lang.Object TextDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object SilenceDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object SetblockDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object SetDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object PropertyDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object ProfileDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object ParamDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object MacroDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object IncludeDirective.build(DirectiveBuilder builder, BuildContext bc)
          Build this use of the directive.
 java.lang.Object GlobalDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object ForeachDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object EscapeDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object EncodeDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object DummyDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object DefaultDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object CountDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object CommentDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object BeanDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object AttributeDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 java.lang.Object ArgsHolder.getArg(int id, BuildContext bc)
          Retrieve the argument whose id is the specified id, and if it is a Builder, build it with the specified build context.
 java.lang.Object DirectiveArgs.getArg(int id, BuildContext bc)
           
 java.lang.Object DirectiveBuilder.getArg(int argId, BuildContext bc)
          Retrieve the argument whose id is the specified id, and if it is a Builder, build it with the specified build context.
 java.lang.Object DirectiveBuilder.build(BuildContext bc)
          Build the directive.
abstract  java.lang.Object Directive.build(DirectiveBuilder b, BuildContext bc)
          Directives must implement a build() method.
 java.lang.Object AlternateDirective.build(DirectiveBuilder builder, BuildContext bc)
           
 

Uses of BuildContext in org.webmacro.engine
 

Subclasses of BuildContext in org.webmacro.engine
 class MacroBuildContext
          A chained build context, for use in expanding macros.
 

Methods in org.webmacro.engine that return BuildContext
 BuildContext MacroBuildContext.getRootContext()
           
 

Methods in org.webmacro.engine with parameters of type BuildContext
 java.lang.Object VariableBuilder.build(BuildContext bc)
           
 java.lang.Object QuotedStringBuilder.build(BuildContext bc)
           
 java.lang.Object PropertyMethodBuilder.build(BuildContext bc)
           
 java.lang.Object ParamBuilder.build(BuildContext bc)
           
 java.lang.Object NullBuilder.build(BuildContext pc)
           
 java.lang.Object MacroBuilder.build(BuildContext bc)
          Expand the macro.
 java.lang.Object[] ListBuilder.buildAsArray(BuildContext bc)
           
 java.lang.Object ListBuilder.build(BuildContext bc)
           
 java.lang.Object FunctionCallBuilder.build(BuildContext bc)
           
 java.lang.Object Expression.BinaryOperationBuilder.build(BuildContext pc)
           
 java.lang.Object Expression.UnaryOperationBuilder.build(BuildContext pc)
           
 java.lang.Object BlockBuilder.build(BuildContext bc)
           
 java.lang.Object MacroDefinition.expand(java.lang.Object[] args, BuildContext bc)
           
 java.lang.Object Builder.build(BuildContext pc)
           
 

Constructors in org.webmacro.engine with parameters of type BuildContext
MacroBuildContext(MacroDefinition macro, java.lang.Object[] args, BuildContext bc)