1 /*
2  * Copyright 2016 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package tests;
17 
18 import javax.annotation.Nullable;
19 import javax.annotation.processing.Generated;
20 import javax.inject.Inject;
21 import javax.inject.Provider;
22 
23 @Generated(
24   value = "com.google.auto.factory.processor.AutoFactoryProcessor",
25   comments = "https://github.com/google/auto/tree/master/factory"
26   )
27 final class SimpleClassNullableParametersFactory {
28   private final Provider<String> providedNullableProvider;
29 
30   private final Provider<String> providedQualifiedNullableProvider;
31 
32   @Inject
SimpleClassNullableParametersFactory( Provider<String> providedNullableProvider, @BQualifier Provider<String> providedQualifiedNullableProvider)33   SimpleClassNullableParametersFactory(
34       Provider<String> providedNullableProvider,
35       @BQualifier Provider<String> providedQualifiedNullableProvider) {
36     this.providedNullableProvider = checkNotNull(providedNullableProvider, 1);
37     this.providedQualifiedNullableProvider = checkNotNull(providedQualifiedNullableProvider, 2);
38   }
39 
create( @ullable String nullable, @Nullable @AQualifier String qualifiedNullable)40   SimpleClassNullableParameters create(
41       @Nullable String nullable, @Nullable @AQualifier String qualifiedNullable) {
42     return new SimpleClassNullableParameters(
43         nullable,
44         qualifiedNullable,
45         providedNullableProvider.get(),
46         providedQualifiedNullableProvider.get());
47   }
48 
checkNotNull(T reference, int argumentIndex)49   private static <T> T checkNotNull(T reference, int argumentIndex) {
50     if (reference == null) {
51       throw new NullPointerException(
52           "@AutoFactory method argument is null but is not marked @Nullable. Argument index: "
53               + argumentIndex);
54     }
55     return reference;
56   }
57 }
58