NewsDetailComponent.java 460 字节
Newer Older
门心叼龙's avatar
门心叼龙 已提交
1
package com.fly.tour.news.inject.component;
门心叼龙's avatar
门心叼龙 已提交
2 3

import com.fly.tour.news.NewsDetailActivity;
门心叼龙's avatar
门心叼龙 已提交
4
import com.fly.tour.news.inject.module.NewsDetailModule;
门心叼龙's avatar
门心叼龙 已提交
5 6 7 8 9

import dagger.Component;

/**
 * Description: <NewsDetailComponent><br>
M
mxdl 已提交
10
 * Author:      mxdl<br>
门心叼龙's avatar
门心叼龙 已提交
11 12 13 14 15 16 17 18
 * Date:        2019/5/31<br>
 * Version:     V1.0.0<br>
 * Update:     <br>
 */
@Component(modules = {NewsDetailModule.class})
public interface NewsDetailComponent {
    void inject(NewsDetailActivity activity);
}