aboutsummaryrefslogtreecommitdiff
path: root/javatests/dagger/internal/codegen/goldens/ComponentProcessorTest_publicComponentType_DEFAULT_MODE_test.DaggerPublicComponent
blob: 48c0f34a9fe2efda2d86dfc2dd02417f7b619d96 (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
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"
})
public final class DaggerPublicComponent {
  private DaggerPublicComponent() {
  }

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

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

  public static final class Builder {
    private Builder() {
    }

    public PublicComponent build() {
      return new PublicComponentImpl();
    }
  }

  private static final class PublicComponentImpl implements PublicComponent {
    private final PublicComponentImpl publicComponentImpl = this;

    private PublicComponentImpl() {


    }
  }
}