• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 class ConstructorAnnotatedNonFinalFactory {
27   private final Provider<Object> objProvider;
28 
29   @Inject
ConstructorAnnotatedNonFinalFactory(Provider<Object> objProvider)30   ConstructorAnnotatedNonFinalFactory(Provider<Object> objProvider) {
31     this.objProvider = checkNotNull(objProvider, 1);
32   }
33 
create()34   ConstructorAnnotatedNonFinal create() {
35     return new ConstructorAnnotatedNonFinal();
36   }
37 
create(String s)38   ConstructorAnnotatedNonFinal create(String s) {
39     return new ConstructorAnnotatedNonFinal(checkNotNull(s, 1));
40   }
41 
create(int i)42   ConstructorAnnotatedNonFinal create(int i) {
43     return new ConstructorAnnotatedNonFinal(checkNotNull(objProvider.get(), 1), i);
44   }
45 
create(char c)46   ConstructorAnnotatedNonFinal create(char c) {
47     return new ConstructorAnnotatedNonFinal(checkNotNull(objProvider.get(), 1), c);
48   }
49 
checkNotNull(T reference, int argumentIndex)50   private static <T> T checkNotNull(T reference, int argumentIndex) {
51     if (reference == null) {
52       throw new NullPointerException(
53           "@AutoFactory method argument is null but is not marked @Nullable. Argument index: "
54               + argumentIndex);
55     }
56     return reference;
57   }
58 }
59