1 /*
2  * Copyright 2013 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.processing.Generated;
19 import javax.inject.Inject;
20 import javax.inject.Provider;
21 
22 @Generated(
23   value = "com.google.auto.factory.processor.AutoFactoryProcessor",
24   comments = "https://github.com/google/auto/tree/master/factory"
25   )
26 final class ConstructorAnnotatedFactory {
27   private final Provider<Object> objProvider;
28 
ConstructorAnnotatedFactory(Provider<Object> objProvider)29   @Inject ConstructorAnnotatedFactory(Provider<Object> objProvider) {
30     this.objProvider = checkNotNull(objProvider, 1);
31   }
32 
create()33   ConstructorAnnotated create() {
34     return new ConstructorAnnotated();
35   }
36 
create(String s)37   ConstructorAnnotated create(String s) {
38     return new ConstructorAnnotated(checkNotNull(s, 1));
39   }
40 
create(int i)41   ConstructorAnnotated create(int i) {
42     return new ConstructorAnnotated(checkNotNull(objProvider.get(), 1), i);
43   }
44 
create(char c)45   ConstructorAnnotated create(char c) {
46     return new ConstructorAnnotated(checkNotNull(objProvider.get(), 1), c);
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