All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dxm.rxbinder.processor.RxProcessor Maven / Gradle / Ivy

There is a newer version: 0.1.5
Show newest version
package com.dxm.rxbinder.processor;

import com.dxm.rxbinder.Context;
import com.dxm.rxbinder.Pair;
import com.squareup.javapoet.TypeSpec;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import javax.lang.model.type.TypeMirror;



/**
 * Created by ants on 9/6/16.
 */
public interface RxProcessor {
    void process(Map> builders, Context context);

    List ALL = new ArrayList() {{
        add(new RxBindProcessor());
    }};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy