Home | History | Annotate | Download | only in internal

Lines Matching refs:rawType

627     Class<?> rawType = key.getTypeLiteral().getRawType();
629 ImplementedBy implementedBy = rawType.getAnnotation(ImplementedBy.class);
632 if (rawType.isArray() || (rawType.isEnum() && implementedBy != null)) {
637 if (rawType == TypeLiteral.class) {
646 Annotations.checkForMisplacedScopeAnnotations(rawType, source, errors);
651 ProvidedBy providedBy = rawType.getAnnotation(ProvidedBy.class);
653 Annotations.checkForMisplacedScopeAnnotations(rawType, source, errors);
701 Class<?> rawType = key.getTypeLiteral().getRawType();
705 if (providerType == rawType) {
713 new ProvidedByInternalFactory<T>(rawType, providerType, providerKey);
714 Object source = rawType;
731 Class<?> rawType = key.getTypeLiteral().getRawType();
735 if (implementationType == rawType) {
740 if (!rawType.isAssignableFrom(implementationType)) {
741 throw errors.notASubtype(implementationType, rawType).toException();
764 Object source = rawType;