Uses of Interface
org.peaseplate.internal.lang.command.ICommand

Packages that use ICommand
org.peaseplate.internal.chunk   
org.peaseplate.internal.designator   
org.peaseplate.internal.lang   
org.peaseplate.internal.lang.command   
org.peaseplate.internal.util   
 

Uses of ICommand in org.peaseplate.internal.chunk
 

Methods in org.peaseplate.internal.chunk that return ICommand
 ICommand AbstractIfBlock.getCommand()
           
 ICommand WhileBlock.getCommand()
           
 ICommand WithBlock.getCommand()
           
 ICommand MessageChunk.getCommand()
           
 ICommand PrintChunk.getCommand()
           
 ICommand WithEachBlock.getCommand()
           
protected  ICommand CallChunk.getParameterCommand(int index)
           
protected  ICommand[] CallChunk.getParameterCommands()
           
 ICommand[] IncludeChunk.getParameterCommands()
           
 

Constructors in org.peaseplate.internal.chunk with parameters of type ICommand
AbstractIfBlock(TemplateLocator locator, int line, int column, ICommand command)
           
CallChunk(TemplateLocator locator, int line, int column, java.lang.String name, java.lang.String extension, ICommand[] parameterCommands)
           
ElseIfBlock(TemplateLocator locator, int line, int column, ICommand command)
           
IfBlock(TemplateLocator locator, int line, int column, ICommand command)
           
IncludeChunk(TemplateLocator locator, int line, int column, java.lang.String name, ICommand[] parameterCommands)
           
MessageChunk(OutputStrategy outputStrategy, TemplateLocator locator, int line, int column, ICommand command)
           
PrintChunk(OutputStrategy outputStrategy, TemplateLocator locator, int line, int column, ICommand command)
           
WhileBlock(TemplateLocator locator, int line, int column, ICommand command)
           
WithBlock(TemplateLocator locator, int line, int column, ICommand command)
           
WithEachBlock(TemplateLocator locator, int line, int column, ICommand command)
           
 

Uses of ICommand in org.peaseplate.internal.designator
 

Classes in org.peaseplate.internal.designator that implement ICommand
static class MessageDesignator.MessageCommand
           
 

Constructors in org.peaseplate.internal.designator with parameters of type ICommand
MessageDesignator.MessageCommand(TemplateLocator locator, int line, int column, java.lang.String key, ICommand... parameterCommands)
           
 

Uses of ICommand in org.peaseplate.internal.lang
 

Methods in org.peaseplate.internal.lang that return ICommand
protected  ICommand Parser.createDoubleParameterCommand(Tokenizer.Type operator, java.lang.Object value, int line, int column, ICommand left, ICommand right)
           
protected  ICommand Parser.createSingleParameterCommand(Tokenizer.Type operator, java.lang.Object value, int line, int column, ICommand command)
           
protected  ICommand Parser.parseCommand(Tokenizer.Type operator, int parenthesisCount)
          Parses the command notation Command = ("(" Command ")" ) | (Expression {AnyOperator Command} ["?"
protected  ICommand Parser.parseExpression()
          Parses the expression.
protected  ICommand Parser.parseExpressionChain(ICommand command)
           
protected  ICommand Parser.parseInvocation(ICommand command)
           
 ICommand[] Parser.parseParameterList()
          Parses the code as parameter list.
protected  ICommand Parser.parseQuery(ICommand command)
           
protected  ICommand Parser.parseSubExpression()
           
 ICommand Parser.parseTransformerChain(ICommand command)
          Parses the transformer notation.
 ICommand Parser.readDefaultReference()
          Parses the code as default reference.
 

Methods in org.peaseplate.internal.lang with parameters of type ICommand
protected  ICommand Parser.createDoubleParameterCommand(Tokenizer.Type operator, java.lang.Object value, int line, int column, ICommand left, ICommand right)
           
protected  ICommand Parser.createSingleParameterCommand(Tokenizer.Type operator, java.lang.Object value, int line, int column, ICommand command)
           
protected  ICommand Parser.parseExpressionChain(ICommand command)
           
protected  ICommand Parser.parseInvocation(ICommand command)
           
protected  ICommand Parser.parseQuery(ICommand command)
           
 ICommand Parser.parseTransformerChain(ICommand command)
          Parses the transformer notation.
 

Uses of ICommand in org.peaseplate.internal.lang.command
 

Classes in org.peaseplate.internal.lang.command that implement ICommand
 class AbstractBooleanCommand
           
 class AbstractCommand
           
 class AbstractCompareCommand
           
 class AbstractDoubleParameterCommand
           
 class AbstractEqualityCommand
           
 class AbstractNativeCallCommand
           
 class AbstractNumericCommand
           
 class AbstractObjectCallCommand
           
 class AbstractSingleParameterCommand
           
 class AbstractUnaryCommand
           
 class AdditionCommand
           
 class AndCommand
           
 class BitwiseAndCommand
           
 class BitwiseExclusiveOrCommand
           
 class BitwiseInclusiveOrCommand
           
 class ComplementCommand
           
 class DivideCommand
           
 class EqualsCommand
           
 class GreaterEqualCommand
           
 class GreaterThanCommand
           
 class InlineConditionCommand
           
 class InvocationCommand
          This command does the whole magic.
 class LessEqualCommand
           
 class LessThanCommand
           
 class ModuloCommand
           
 class MultiplyCommand
           
 class NegativeCommand
           
 class NotCommand
           
 class NotEqualsCommand
           
 class OrCommand
           
 class PopCommand
           
 class PositiveCommand
           
 class QueryCommand
          This command does the whole magic.
 class ShiftLeftCommand
           
 class ShiftRightCommand
           
 class SubstractCommand
           
 class ThisCommand
           
 class TransformerCommand
           
 class UnsignedShiftRightCommand
           
 class ValueCommand
           
 class VariableCommand
           
 

Methods in org.peaseplate.internal.lang.command that return ICommand
 ICommand AbstractSingleParameterCommand.getCommand()
           
 ICommand InlineConditionCommand.getCondition()
           
 ICommand AbstractDoubleParameterCommand.getLeftCommand()
           
 ICommand[] AbstractNativeCallCommand.getParameterCommands()
           
 ICommand AbstractDoubleParameterCommand.getRightCommand()
           
 

Constructors in org.peaseplate.internal.lang.command with parameters of type ICommand
AbstractBooleanCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
AbstractCompareCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
AbstractDoubleParameterCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
AbstractEqualityCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
AbstractNativeCallCommand(TemplateLocator locator, int line, int column, ICommand command, ICommand... parameterCommands)
           
AbstractNativeCallCommand(TemplateLocator locator, int line, int column, ICommand command, ICommand... parameterCommands)
           
AbstractNumericCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
AbstractObjectCallCommand(TemplateLocator locator, int line, int column, ICommand command, ICommand... parameterCommands)
           
AbstractObjectCallCommand(TemplateLocator locator, int line, int column, ICommand command, ICommand... parameterCommands)
           
AbstractSingleParameterCommand(TemplateLocator locator, int line, int column, ICommand command)
           
AbstractUnaryCommand(TemplateLocator locator, int line, int column, ICommand command)
           
AdditionCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
AndCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
BitwiseAndCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
BitwiseExclusiveOrCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
BitwiseInclusiveOrCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
ComplementCommand(TemplateLocator locator, int line, int column, ICommand command)
           
DivideCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
EqualsCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
GreaterEqualCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
GreaterThanCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
InlineConditionCommand(TemplateLocator locator, int line, int column, ICommand condition, ICommand leftCommand, ICommand rightCommand)
           
InvocationCommand(TemplateLocator locator, int line, int column, ICommand command, java.lang.String identifier, ICommand[] parameterCommands)
           
InvocationCommand(TemplateLocator locator, int line, int column, ICommand command, java.lang.String identifier, ICommand[] parameterCommands)
           
LessEqualCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
LessThanCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
ModuloCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
MultiplyCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
NegativeCommand(TemplateLocator locator, int line, int column, ICommand command)
           
NotCommand(TemplateLocator locator, int line, int column, ICommand command)
           
NotEqualsCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
OrCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
PopCommand(TemplateLocator locator, int line, int column, ICommand command)
           
PositiveCommand(TemplateLocator locator, int line, int column, ICommand command)
           
QueryCommand(TemplateLocator locator, int line, int column, ICommand command, ICommand identifierCommand, ICommand[] parameterCommands)
           
QueryCommand(TemplateLocator locator, int line, int column, ICommand command, ICommand identifierCommand, ICommand[] parameterCommands)
           
ShiftLeftCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
ShiftRightCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
SubstractCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
TransformerCommand(TemplateLocator locator, int line, int column, TransformerService transformerService, java.lang.String name, java.lang.String extension, ICommand command, ICommand... parameterCommands)
           
TransformerCommand(TemplateLocator locator, int line, int column, TransformerService transformerService, java.lang.String name, java.lang.String extension, ICommand command, ICommand... parameterCommands)
           
UnsignedShiftRightCommand(TemplateLocator locator, int line, int column, ICommand leftCommand, ICommand rightCommand)
           
 

Uses of ICommand in org.peaseplate.internal.util
 

Methods in org.peaseplate.internal.util with parameters of type ICommand
static java.lang.Object[] ReflectionUtils.callParameterCommands(BuildContext context, ICommand[] parameterCommands, java.lang.reflect.Method method, java.lang.Object... initialParameters)
          Calls the specified parameter commands and converts them to the specified parameter types and returns them as array.
 



Copyright © 2008. All Rights Reserved.