Uses of Interface
org.richfaces.cdk.templatecompiler.el.types.ELType

Packages that use ELType
org.richfaces.cdk.templatecompiler   
org.richfaces.cdk.templatecompiler.builder.model   
org.richfaces.cdk.templatecompiler.el   
org.richfaces.cdk.templatecompiler.el.node   
org.richfaces.cdk.templatecompiler.el.types   
org.richfaces.cdk.templatecompiler.statements   
 

Uses of ELType in org.richfaces.cdk.templatecompiler
 

Methods in org.richfaces.cdk.templatecompiler that return ELType
 ELType ELParser.getType(java.lang.Class<?> targetClass)
           
 ELType ELParser.getType(ClassName targetClass)
           
 ELType ELParser.getType(java.lang.String classExpression)
           
 

Methods in org.richfaces.cdk.templatecompiler with parameters of type ELType
 TypedTemplateStatement ELParser.parse(java.lang.String expression, Variables variables, ELType expectedType)
           
 

Constructors in org.richfaces.cdk.templatecompiler with parameters of type ELType
ELTypeTemplateModel(ELType obj, freemarker.ext.beans.BeansWrapper wrapper)
           
 

Uses of ELType in org.richfaces.cdk.templatecompiler.builder.model
 

Methods in org.richfaces.cdk.templatecompiler.builder.model that return ELType
 ELType JavaMethod.getReturnType()
           
 ELType JavaField.getType()
           
 ELType JavaAnnotation.getType()
           
 ELType Argument.getType()
           
 ELType Variables.getVariable(java.lang.String name)
           
 ELType Variables.setVariable(java.lang.String name, ELType type)
           
 

Methods in org.richfaces.cdk.templatecompiler.builder.model that return types with arguments of type ELType
 java.util.List<ELType> JavaMethod.getExceptions()
           
 

Methods in org.richfaces.cdk.templatecompiler.builder.model with parameters of type ELType
static Argument Argument.arg(java.lang.String name, ELType type)
           
 ELType Variables.setVariable(java.lang.String name, ELType type)
           
 

Constructors in org.richfaces.cdk.templatecompiler.builder.model with parameters of type ELType
Argument(java.lang.String name, ELType type)
           
JavaAnnotation(ELType type)
           
JavaAnnotation(ELType type, java.lang.String... parameters)
           
JavaField(ELType type, java.lang.String name)
           
JavaField(ELType type, java.lang.String name, JavaStatement value)
           
JavaMethod(java.lang.String name, ELType returnType, Argument... arguments)
           
 

Uses of ELType in org.richfaces.cdk.templatecompiler.el
 

Methods in org.richfaces.cdk.templatecompiler.el that return ELType
 ELType ELVisitor.getMatchingVisibleMethodReturnType(java.lang.String methodName, ELType[] parameterTypes)
           
 ELType ELVisitor.getType()
           
 ELType ELParserImpl.getType(java.lang.Class<?> targetClass)
           
 ELType ELParserImpl.getType(ClassName targetClass)
           
 ELType ELParserImpl.getType(java.lang.String classExpression)
           
 ELType ELVisitor.getVariable(java.lang.String name)
           
 

Methods in org.richfaces.cdk.templatecompiler.el with parameters of type ELType
 java.lang.String ELVisitor.coerceToType(java.lang.String valueString, ELType expectedType)
           
 ELType ELVisitor.getMatchingVisibleMethodReturnType(java.lang.String methodName, ELType[] parameterTypes)
           
 void ELVisitor.parse(java.lang.String expression, Variables contextVariables, ELType expectedType)
          Parse specified EL expression and return Java code, that represent this expression
 TypedTemplateStatement ELParserImpl.parse(java.lang.String expression, Variables variables, ELType expectedType)
           
 void ELVisitor.setExpressionType(ELType variableType)
           
 

Uses of ELType in org.richfaces.cdk.templatecompiler.el.node
 

Methods in org.richfaces.cdk.templatecompiler.el.node that return ELType
protected  ELType BinaryBooleanResultOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
protected  ELType BinaryBooleanOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
protected  ELType BinaryArithmeticOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
protected  ELType BinaryArithmeticIntegerOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
protected abstract  ELType AbstractBinaryOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
 

Methods in org.richfaces.cdk.templatecompiler.el.node with parameters of type ELType
protected  ELType BinaryBooleanResultOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
protected  ELType BinaryBooleanOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
protected  ELType BinaryArithmeticOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
protected  ELType BinaryArithmeticIntegerOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
protected abstract  ELType AbstractBinaryOperationTreeNode.getOperationType(ELType firstArgumentType, ELType secondArgumentType)
           
 

Uses of ELType in org.richfaces.cdk.templatecompiler.el.types
 

Classes in org.richfaces.cdk.templatecompiler.el.types that implement ELType
 class ComplexType
           
 class NullType
           
 class PlainClassType
           
 class ReferencedType
           
 

Fields in org.richfaces.cdk.templatecompiler.el.types declared as ELType
static ELType TypesFactory.BOOLEAN_TYPE
           
static ELType TypesFactory.DOUBLE_TYPE
           
static ELType NullType.INSTANCE
          Singleton instance of NullType
static ELType TypesFactory.INT_TYPE
           
static ELType TypesFactory.INTEGER_TYPE
           
static ELType[] PlainClassType.NO_TYPES
           
static ELType TypesFactory.OBJECT_TYPE
           
static ELType TypesFactory.STRING_TYPE
           
static ELType TypesFactory.VOID_TYPE
           
 

Methods in org.richfaces.cdk.templatecompiler.el.types that return ELType
 ELType ReferencedType.getContainerType()
           
 ELType PlainClassType.getContainerType()
           
 ELType NullType.getContainerType()
           
 ELType ELType.getContainerType()
           
 ELType ComplexType.getContainerType()
           
 ELType TypesFactoryImpl.getMatchingVisibleMethodReturnType(ELType elType, java.lang.String methodName, ELType... parameterTypes)
           Find an accessible method that matches the given name and has compatible parameters.
 ELType TypesFactory.getMatchingVisibleMethodReturnType(ELType elType, java.lang.String methodName, ELType... parameterTypes)
           Find an accessible method that matches the given name and has compatible parameters.
 ELType ReferencedType.getRawType()
           
 ELType PlainClassType.getRawType()
           
 ELType NullType.getRawType()
           
 ELType ELType.getRawType()
           
 ELType ComplexType.getRawType()
           
 ELType ELPropertyDescriptor.getType()
           
 ELType DummyPropertyDescriptor.getType()
           
 ELType TypesFactoryImpl.getType(java.lang.String typeString)
           
 ELType TypesFactory.getType(java.lang.String typeString)
          

 ELType TypesFactoryImpl.getType(java.lang.reflect.Type reflectionType)
           
 ELType TypesFactory.getType(java.lang.reflect.Type reflectionType)
          

 ELType[] ReferencedType.getTypeArguments()
           
 ELType[] PlainClassType.getTypeArguments()
           
 ELType[] NullType.getTypeArguments()
           
 ELType[] ELType.getTypeArguments()
           
 ELType[] ComplexType.getTypeArguments()
           
 

Methods in org.richfaces.cdk.templatecompiler.el.types with parameters of type ELType
 ELType TypesFactoryImpl.getMatchingVisibleMethodReturnType(ELType elType, java.lang.String methodName, ELType... parameterTypes)
           Find an accessible method that matches the given name and has compatible parameters.
 ELType TypesFactoryImpl.getMatchingVisibleMethodReturnType(ELType elType, java.lang.String methodName, ELType... parameterTypes)
           Find an accessible method that matches the given name and has compatible parameters.
 ELType TypesFactory.getMatchingVisibleMethodReturnType(ELType elType, java.lang.String methodName, ELType... parameterTypes)
           Find an accessible method that matches the given name and has compatible parameters.
 ELType TypesFactory.getMatchingVisibleMethodReturnType(ELType elType, java.lang.String methodName, ELType... parameterTypes)
           Find an accessible method that matches the given name and has compatible parameters.
 ELPropertyDescriptor TypesFactoryImpl.getPropertyDescriptor(ELType elType, java.lang.String propertyName)
          This method return PropertyDescriptor by specified propertyName and clazz.
 ELPropertyDescriptor TypesFactory.getPropertyDescriptor(ELType type, java.lang.String name)
          This method return PropertyDescriptor by specified propertyName and clazz.
 boolean ReferencedType.isAssignableFrom(ELType anotherType)
           
 boolean PlainClassType.isAssignableFrom(ELType anotherType)
           
 boolean NullType.isAssignableFrom(ELType anotherType)
           
 boolean ELType.isAssignableFrom(ELType anotherType)
           
 boolean ComplexType.isAssignableFrom(ELType anotherType)
           
 

Constructors in org.richfaces.cdk.templatecompiler.el.types with parameters of type ELType
ComplexType(ELType clearComponentType, ELType[] typeArguments, int arrayDepth)
           
ComplexType(ELType clearComponentType, ELType[] typeArguments, int arrayDepth)
           
 

Uses of ELType in org.richfaces.cdk.templatecompiler.statements
 

Methods in org.richfaces.cdk.templatecompiler.statements that return ELType
 ELType ScriptObjectStatement.getImplementationType()
           
 ELType TypedTemplateStatement.getType()
           
 ELType ScriptObjectStatement.getType()
           
 ELType DefineObjectStatement.getType()
           
 ELType StatementsContainer.getVariable(java.lang.String name)
           
 ELType ForEachStatement.getVarType()
           
 ELType StatementsContainer.setVariable(java.lang.String name, ELType type)
           
 

Methods in org.richfaces.cdk.templatecompiler.statements with parameters of type ELType
 ELType StatementsContainer.setVariable(java.lang.String name, ELType type)
           
 

Constructors in org.richfaces.cdk.templatecompiler.statements with parameters of type ELType
HelperJavaMethod(java.lang.String name, ELType returnType, Argument[] arguments)
           
 



Copyright © 2011 JBoss, a division of Red Hat, Inc.. All Rights Reserved.