aboutsummaryrefslogtreecommitdiff
path: root/javatests/dagger/internal/codegen/goldens/ComponentCreatorTest_testCreatorWithPrimitiveBindsInstance_compilerMode=FAST_INIT_MODE, creatorKind=dagger.Component.Factory_test.DaggerSimpleComponent
blob: fb85bebc16a50dbabd3a5d9d7d8ee0ef9afa6621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package test;

import dagger.internal.DaggerGenerated;
import dagger.internal.Preconditions;
import javax.annotation.processing.Generated;

@DaggerGenerated
@Generated(
    value = "dagger.internal.codegen.ComponentProcessor",
    comments = "https://dagger.dev"
)
@SuppressWarnings({
    "unchecked",
    "rawtypes",
    "KotlinInternal",
    "KotlinInternalInJava"
})
final class DaggerSimpleComponent {
  private DaggerSimpleComponent() {
  }

  public static SimpleComponent.Factory factory() {
    return new Factory();
  }

  private static final class Factory implements SimpleComponent.Factory {
    @Override
    public SimpleComponent create(int i) {
      Preconditions.checkNotNull(i);
      return new SimpleComponentImpl(i);
    }
  }

  private static final class SimpleComponentImpl implements SimpleComponent {
    private final Integer i;

    private final SimpleComponentImpl simpleComponentImpl = this;

    private SimpleComponentImpl(Integer iParam) {
      this.i = iParam;

    }

    @Override
    public int anInt() {
      return i;
    }
  }
}