blob: 62fa3a3ae4363541b5f2a420a7c3e1996bee3f08 [file] [log] [blame]
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"
})
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 t_CImpl();
}
}
private static final class F_CImpl implements Foo.C {
private final t_CImpl _t_CImpl;
private final F_CImpl f_CImpl = this;
private F_CImpl(t_CImpl _t_CImpl) {
this._t_CImpl = _t_CImpl;
}
}
private static final class t_CImpl implements C {
private final t_CImpl _t_CImpl = this;
private t_CImpl() {
}
@Override
public Foo.C newInstanceC() {
return new F_CImpl(_t_CImpl);
}
}
}