Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.adif.elcanomovil.uiTrain.di;
|
||||
|
||||
import com.adif.elcanomovil.uiTrain.entities.StepMapper;
|
||||
import com.adif.elcanomovil.uiTrain.entities.TrainInfoMapper;
|
||||
import dagger.Module;
|
||||
import dagger.Provides;
|
||||
import dagger.hilt.InstallIn;
|
||||
import dagger.hilt.components.SingletonComponent;
|
||||
import kotlin.Metadata;
|
||||
|
||||
@Metadata(d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\bÇ\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H\u0007J\b\u0010\u0005\u001a\u00020\u0006H\u0007¨\u0006\u0007"}, d2 = {"Lcom/adif/elcanomovil/uiTrain/di/TrainModule;", "", "()V", "providesStepMapper", "Lcom/adif/elcanomovil/uiTrain/entities/StepMapper;", "providesTrainInfoMapper", "Lcom/adif/elcanomovil/uiTrain/entities/TrainInfoMapper;", "ui-train_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
@Module
|
||||
@InstallIn({SingletonComponent.class})
|
||||
/* loaded from: classes3.dex */
|
||||
public final class TrainModule {
|
||||
public static final TrainModule INSTANCE = new TrainModule();
|
||||
|
||||
private TrainModule() {
|
||||
}
|
||||
|
||||
@Provides
|
||||
public final StepMapper providesStepMapper() {
|
||||
return new StepMapper();
|
||||
}
|
||||
|
||||
@Provides
|
||||
public final TrainInfoMapper providesTrainInfoMapper() {
|
||||
return new TrainInfoMapper();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.adif.elcanomovil.uiTrain.di;
|
||||
|
||||
import P1.a;
|
||||
import com.adif.elcanomovil.uiTrain.entities.StepMapper;
|
||||
import dagger.internal.DaggerGenerated;
|
||||
import dagger.internal.Factory;
|
||||
import dagger.internal.Preconditions;
|
||||
import dagger.internal.QualifierMetadata;
|
||||
import dagger.internal.ScopeMetadata;
|
||||
|
||||
@ScopeMetadata
|
||||
@DaggerGenerated
|
||||
@QualifierMetadata
|
||||
/* loaded from: classes3.dex */
|
||||
public final class TrainModule_ProvidesStepMapperFactory implements Factory<StepMapper> {
|
||||
public static TrainModule_ProvidesStepMapperFactory create() {
|
||||
return a.f1345a;
|
||||
}
|
||||
|
||||
public static StepMapper providesStepMapper() {
|
||||
return (StepMapper) Preconditions.checkNotNullFromProvides(TrainModule.INSTANCE.providesStepMapper());
|
||||
}
|
||||
|
||||
@Override // javax.inject.Provider
|
||||
public StepMapper get() {
|
||||
return providesStepMapper();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.adif.elcanomovil.uiTrain.di;
|
||||
|
||||
import P1.b;
|
||||
import com.adif.elcanomovil.uiTrain.entities.TrainInfoMapper;
|
||||
import dagger.internal.DaggerGenerated;
|
||||
import dagger.internal.Factory;
|
||||
import dagger.internal.Preconditions;
|
||||
import dagger.internal.QualifierMetadata;
|
||||
import dagger.internal.ScopeMetadata;
|
||||
|
||||
@ScopeMetadata
|
||||
@DaggerGenerated
|
||||
@QualifierMetadata
|
||||
/* loaded from: classes3.dex */
|
||||
public final class TrainModule_ProvidesTrainInfoMapperFactory implements Factory<TrainInfoMapper> {
|
||||
public static TrainModule_ProvidesTrainInfoMapperFactory create() {
|
||||
return b.f1346a;
|
||||
}
|
||||
|
||||
public static TrainInfoMapper providesTrainInfoMapper() {
|
||||
return (TrainInfoMapper) Preconditions.checkNotNullFromProvides(TrainModule.INSTANCE.providesTrainInfoMapper());
|
||||
}
|
||||
|
||||
@Override // javax.inject.Provider
|
||||
public TrainInfoMapper get() {
|
||||
return providesTrainInfoMapper();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user