Uses of Interface
org.androidtransfuse.analysis.adapter.ASTMethod

Packages that use ASTMethod
org.androidtransfuse.analysis   
org.androidtransfuse.analysis.adapter   
org.androidtransfuse.analysis.astAnalyzer   
org.androidtransfuse.analysis.module   
org.androidtransfuse.gen   
org.androidtransfuse.gen.componentBuilder   
org.androidtransfuse.model   
 

Uses of ASTMethod in org.androidtransfuse.analysis
 

Methods in org.androidtransfuse.analysis with parameters of type ASTMethod
 MethodInjectionPoint InjectionPointFactory.buildInjectionPoint(ASTType concreteType, ASTMethod astMethod, AnalysisContext context)
          Build a Method Injection Point from the given ASTMethod
 

Uses of ASTMethod in org.androidtransfuse.analysis.adapter
 

Classes in org.androidtransfuse.analysis.adapter that implement ASTMethod
 class ASTClassMethod
          Class specific AST Method
 class ASTElementMethod
          Element specific implementation of the AST Method
 class ASTMethodUniqueSignatureDecorator
          Class to decorate an ASTMethod with an equals and hashcode based on the method signature.
 

Methods in org.androidtransfuse.analysis.adapter that return ASTMethod
 ASTMethod ASTClassFactory.buildASTClassMethod(Method method)
          Builds an AST Method fromm the given input method.
 ASTMethod ASTElementFactory.buildASTElementMethod(ExecutableElement executableElement)
          Build an ASTMethod from the provided ExecutableElement
 

Methods in org.androidtransfuse.analysis.adapter that return types with arguments of type ASTMethod
 Collection<ASTMethod> ASTArrayType.getMethods()
           
 Collection<ASTMethod> ASTTypeVirtualProxy.getMethods()
           
 Collection<ASTMethod> ASTElementType.getMethods()
           
 Collection<ASTMethod> ASTGenericTypeWrapper.getMethods()
           
 Collection<ASTMethod> ASTProxyType.getMethods()
           
 Collection<ASTMethod> ASTType.getMethods()
          Supplies all available methods
 Collection<ASTMethod> ASTPrimitiveType.getMethods()
           
 Collection<ASTMethod> ASTVoidType.getMethods()
           
 Collection<ASTMethod> ASTEmptyType.getMethods()
           
 Collection<ASTMethod> ASTClassType.getMethods()
           
 

Constructors in org.androidtransfuse.analysis.adapter with parameters of type ASTMethod
ASTMethodUniqueSignatureDecorator(ASTMethod method)
           
MethodSignature(ASTMethod method)
           
 

Constructor parameters in org.androidtransfuse.analysis.adapter with type arguments of type ASTMethod
ASTClassType(Class<?> clazz, com.google.common.collect.ImmutableCollection<ASTAnnotation> annotationList, com.google.common.collect.ImmutableCollection<ASTConstructor> constructors, com.google.common.collect.ImmutableCollection<ASTMethod> methods, com.google.common.collect.ImmutableCollection<ASTField> fields, ASTType superClass, com.google.common.collect.ImmutableCollection<ASTType> interfaces)
           
ASTElementType(TypeElement typeElement, com.google.common.collect.ImmutableCollection<ASTConstructor> constructors, com.google.common.collect.ImmutableCollection<ASTMethod> methods, com.google.common.collect.ImmutableCollection<ASTField> fields, ASTType superClass, com.google.common.collect.ImmutableCollection<ASTType> interfaces, com.google.common.collect.ImmutableCollection<ASTAnnotation> annotations)
           
 

Uses of ASTMethod in org.androidtransfuse.analysis.astAnalyzer
 

Methods in org.androidtransfuse.analysis.astAnalyzer that return types with arguments of type ASTMethod
 Set<ASTMethod> ListenerAspect.getListeners(String name)
           
 Map<ASTMethod,Set<InjectionNode>> AOPProxyAspect.getMethodInterceptors()
           
 Set<ASTMethod> ObservesAspect.getObserverMethods(ASTType event)
           
 

Methods in org.androidtransfuse.analysis.astAnalyzer with parameters of type ASTMethod
 void AOPProxyAspect.addInterceptor(ASTMethod astMethod, InjectionNode interceptorInjectionNode)
           
 void ListenerAspect.addMethodCallback(String name, ASTMethod method)
           
 void ObservesAspect.addObserver(ASTType event, ASTMethod method)
           
 void ObservesAnalysis.analyzeMethod(InjectionNode injectionNode, ASTType concreteType, ASTMethod astMethod, AnalysisContext context)
           
 void InjectionAnalyzer.analyzeMethod(InjectionNode injectionNode, ASTType concreteType, ASTMethod astMethod, AnalysisContext context)
           
 void ASTAnalysis.analyzeMethod(InjectionNode injectionNode, ASTType concreteType, ASTMethod astMethod, AnalysisContext context)
          Analyze the given method.
 void AOPProxyAnalyzer.analyzeMethod(InjectionNode injectionNode, ASTType concreteType, ASTMethod astMethod, AnalysisContext context)
           
 void ListenerAnalysis.analyzeMethod(InjectionNode injectionNode, ASTType concreteType, ASTMethod astMethod, AnalysisContext context)
           
 void RegistrationAnalyzer.analyzeMethod(InjectionNode injectionNode, ASTType concreteType, ASTMethod astMethod, AnalysisContext context)
           
 void ASTAnalysisAdaptor.analyzeMethod(InjectionNode injectionNode, ASTType concreteType, ASTMethod astMethod, AnalysisContext context)
           
 

Uses of ASTMethod in org.androidtransfuse.analysis.module
 

Methods in org.androidtransfuse.analysis.module with parameters of type ASTMethod
 void MethodProcessor.process(ASTMethod astMethod, ASTAnnotation astAnnotation)
           
 void ModuleProcessor.processMethod(ASTMethod astMethod)
           
 

Uses of ASTMethod in org.androidtransfuse.gen
 

Methods in org.androidtransfuse.gen with parameters of type ASTMethod
 com.sun.codemodel.JInvocation InvocationBuilder.buildMethodCall(ASTType returnType, List<ASTParameter> callingParameters, Map<ASTParameter,TypedExpression> parameters, ASTType targetExpressionType, com.sun.codemodel.JExpression targetExpression, ASTMethod methodToCall)
           
 

Uses of ASTMethod in org.androidtransfuse.gen.componentBuilder
 

Methods in org.androidtransfuse.gen.componentBuilder with parameters of type ASTMethod
 ActivityMethodDelegateASTReference ComponentBuilderFactory.buildActivityMethodDelegateASTReference(ASTMethod astMethod)
           
 FragmentOnCreateViewMethodBuilder ComponentBuilderFactory.buildFragmentMethodBuilder(Integer layout, ASTMethod method)
           
 MirroredMethodGenerator ComponentBuilderFactory.buildMirroredMethodGenerator(ASTMethod method, boolean superCall)
           
 OnCreateMethodBuilder ComponentBuilderFactory.buildOnCreateMethodBuilder(ASTMethod method, LayoutBuilder layoutBuilder)
           
 ViewMethodRegistrationInvocationBuilderImpl ComponentBuilderFactory.buildViewMethodRegistrationInvocationBuilder(ASTMethod getterMethod)
           
 

Method parameters in org.androidtransfuse.gen.componentBuilder with type arguments of type ASTMethod
 ActivityDelegateRegistrationGenerator ComponentBuilderFactory.buildActivityRegistrationGenerator(ActivityDelegateASTReference activityDelegateASTReference, com.google.common.collect.ImmutableList<ASTMethod> methods)
           
 

Constructors in org.androidtransfuse.gen.componentBuilder with parameters of type ASTMethod
ActivityMethodDelegateASTReference(ASTMethod method, InvocationBuilder invocationBuilder)
           
FragmentOnCreateViewMethodBuilder(Integer layout, ASTMethod onCreateViewMethod, com.sun.codemodel.JCodeModel codeModel, UniqueVariableNamer namer, ASTClassFactory astClassFactory, RResourceReferenceBuilder rResourceReferenceBuilder)
           
MirroredMethodGenerator(ASTMethod overrideMethod, boolean superCall, com.sun.codemodel.JCodeModel codeModel, UniqueVariableNamer variableNamer)
           
OnCreateMethodBuilder(ASTMethod onCreateASTMethod, LayoutBuilder layoutBuilder, com.sun.codemodel.JCodeModel codeModel, UniqueVariableNamer namer)
           
ViewMethodRegistrationInvocationBuilderImpl(ASTMethod getterMethod, InvocationBuilder invocationBuilder)
           
 

Constructor parameters in org.androidtransfuse.gen.componentBuilder with type arguments of type ASTMethod
ActivityDelegateRegistrationGenerator(ActivityDelegateASTReference activityDelegateASTReference, com.google.common.collect.ImmutableList<ASTMethod> methods, com.sun.codemodel.JCodeModel codeModel, UniqueVariableNamer namer)
           
 

Uses of ASTMethod in org.androidtransfuse.model
 

Methods in org.androidtransfuse.model that return ASTMethod
 ASTMethod MethodDescriptor.getASTMethod()
           
 ASTMethod GetterSetterMethodPair.getGetter()
           
 ASTMethod GetterSetterMethodPair.getSetter()
           
 

Constructors in org.androidtransfuse.model with parameters of type ASTMethod
GetterSetterMethodPair(ASTMethod getter, ASTMethod setter)
           
MethodDescriptor(com.sun.codemodel.JMethod method, ASTMethod astMethod, com.google.common.collect.ImmutableMap<ASTParameter,TypedExpression> parameterMap, com.google.common.collect.ImmutableMap<ASTType,TypedExpression> typeMap)
           
MethodDescriptorBuilder(com.sun.codemodel.JMethod codeModelMethod, ASTMethod astMethod)
           
 



Copyright © 2012. All Rights Reserved.