Class TypeVisitorBase<T>
- java.lang.Object
-
- javax.lang.model.util.AbstractTypeVisitor6<R,P>
-
- javax.lang.model.util.SimpleTypeVisitor6<T,State>
-
- com.google.web.bindery.requestfactory.apt.TypeVisitorBase<T>
-
- Type Parameters:
T- the return type for the visitor
- All Implemented Interfaces:
javax.lang.model.type.TypeVisitor<T,State>
- Direct Known Subclasses:
ClientToDomainMapper,TransportableTypeVisitor
class TypeVisitorBase<T> extends javax.lang.model.util.SimpleTypeVisitor6<T,State>
Provides utility functions for type visitors.
-
-
Constructor Summary
Constructors Constructor Description TypeVisitorBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.List<javax.lang.model.type.DeclaredType>getValueTypes(State state)This method should be kept in sync withValueCodex.getAllValueTypes().-
Methods inherited from class javax.lang.model.util.SimpleTypeVisitor6
defaultAction, visitArray, visitDeclared, visitError, visitExecutable, visitNoType, visitNull, visitPrimitive, visitTypeVariable, visitWildcard
-
-
-
-
Method Detail
-
getValueTypes
protected java.util.List<javax.lang.model.type.DeclaredType> getValueTypes(State state)
This method should be kept in sync withValueCodex.getAllValueTypes(). It doesn't usegetAllValueTypes()because a dependency onValueCodexwould pull in a large number of dependencies into the minimalrequestfactory-apt.jar.
-
-