Uses of Interface
org.apache.tapestry5.plastic.LocalVariable
-
Packages that use LocalVariable Package Description org.apache.tapestry5.internal.plastic [INTERNAL USE ONLY] Plastic implementation details; API subject to changeorg.apache.tapestry5.plastic Plastic, Tapestry's component class transformation library based on ASM -
-
Uses of LocalVariable in org.apache.tapestry5.internal.plastic
Methods in org.apache.tapestry5.internal.plastic with parameters of type LocalVariable Modifier and Type Method Description InstructionBuilder
InstructionBuilderImpl. increment(LocalVariable variable)
InstructionBuilder
InstructionBuilderImpl. loadVariable(LocalVariable var)
InstructionBuilder
InstructionBuilderImpl. storeVariable(LocalVariable var)
-
Uses of LocalVariable in org.apache.tapestry5.plastic
Methods in org.apache.tapestry5.plastic with parameters of type LocalVariable Modifier and Type Method Description void
LocalVariableCallback. doBuild(LocalVariable variable, InstructionBuilder builder)
Callback to generate code with a local variableInstructionBuilder
InstructionBuilder. increment(LocalVariable variable)
Increments a local integer variable.InstructionBuilder
InstructionBuilder. loadVariable(LocalVariable variable)
Loads a value from a local variable and pushes it onto the stack.InstructionBuilder
InstructionBuilder. storeVariable(LocalVariable variable)
Stores the value on top of the stack to a local variable (previously defined byInstructionBuilder.startVariable(String, LocalVariableCallback)
.
-