Home
last modified time | relevance | path

Searched refs:extendingType (Results 1 – 4 of 4) sorted by relevance

/external/auto/factory/src/main/java/com/google/auto/factory/processor/
DAutoFactoryDeclaration.java59 abstract TypeElement extendingType(); in extendingType() method in AutoFactoryDeclaration
117 TypeElement extendingType = AnnotationValues.asType(extendingValue); in createIfValid() local
118 if (extendingType == null) { in createIfValid()
123 } else if (!isValidSupertypeForClass(extendingType)) { in createIfValid()
127 extendingType.getQualifiedName()), in createIfValid()
132 FluentIterable.from(ElementFilter.constructorsIn(extendingType.getEnclosedElements())) in createIfValid()
143 extendingType.getQualifiedName()), in createIfValid()
165 extendingType, in createIfValid()
DAutoFactoryProcessor.java106 TypeElement extendingType = declaration.get().extendingType(); in doProcess() local
108 factoryName, implementationMethods(extendingType, element)); in doProcess()
140 extending.add(methodDescriptor.declaration().extendingType().asType()); in doProcess()
DFactoryDescriptor.java50 abstract TypeMirror extendingType(); in extendingType() method in FactoryDescriptor
80 TypeMirror extendingType, in create() argument
137 extendingType, in create()
DFactoryWriter.java95 factory.superclass(TypeName.get(descriptor.extendingType())); in writeFactory()