aboutsummaryrefslogtreecommitdiff
path: root/javatests/dagger/internal/codegen/goldens/ComponentCreatorTest_testCreatorWithBindsInstanceNoStaticCreateGenerated_compilerMode=DEFAULT_MODE, creatorKind=dagger.Component.Factory_test.DaggerSimpleComponent
blob: c31b4abafb5e649810cfe500007732d1791630ca (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
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",
    "cast"
})
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(Object object) {
      Preconditions.checkNotNull(object);
      return new SimpleComponentImpl(object);
    }
  }

  private static final class SimpleComponentImpl implements SimpleComponent {
    private final Object object;

    private final SimpleComponentImpl simpleComponentImpl = this;

    private SimpleComponentImpl(Object objectParam) {
      this.object = objectParam;

    }

    @Override
    public Object object() {
      return object;
    }
  }
}