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

moxy.compiler.presenterbinder.TargetClassInfo Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
package moxy.compiler.presenterbinder;

import com.squareup.javapoet.ClassName;

import java.util.List;

import javax.lang.model.element.TypeElement;

class TargetClassInfo {

    private final ClassName name;

    private final List fields;

    TargetClassInfo(TypeElement name, List fields) {
        this.name = ClassName.get(name);
        this.fields = fields;
    }

    ClassName getName() {
        return name;
    }

    List getFields() {
        return fields;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy