aboutsummaryrefslogtreecommitdiff
path: root/javatests/dagger/internal/codegen/goldens/SubcomponentCreatorRequestFulfillmentTest_testInlinedSubcomponentCreators_componentMethod_compilerMode=FAST_INIT_MODE, creatorKind=dagger.Subcomponent.Factory_test.DaggerC
blob: a0c70805b0607aeceabcbc11325044ade36618ff (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package test;

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

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

  public static Builder builder() {
    return new Builder();
  }

  public static C create() {
    return new Builder().build();
  }

  static final class Builder {
    private Builder() {
    }

    public C build() {
      return new CImpl();
    }
  }

  private static final class SubFactory implements Sub.Factory {
    private final CImpl cImpl;

    private SubFactory(CImpl cImpl) {
      this.cImpl = cImpl;
    }

    @Override
    public Sub createComponent() {
      return new SubImpl(cImpl);
    }
  }

  private static final class SubImpl implements Sub {
    private final CImpl cImpl;

    private final SubImpl subImpl = this;

    private SubImpl(CImpl cImpl) {
      this.cImpl = cImpl;


    }
  }

  private static final class CImpl implements C {
    private final CImpl cImpl = this;

    private CImpl() {


    }

    @Override
    public Sub.Factory sFactory() {
      return new SubFactory(cImpl);
    }

    @Override
    public UsesSubcomponent usesSubcomponent() {
      return new UsesSubcomponent(new SubFactory(cImpl));
    }
  }
}