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

com.jzallas.lifecycleaware.compiler.generators.ClassGenerator Maven / Gradle / Ivy

Go to download

Annotation based triggers that automatically hook observers into the Android lifecycle.

The newest version!
package com.jzallas.lifecycleaware.compiler.generators;

import com.squareup.javapoet.JavaFile;
import com.squareup.javapoet.MethodSpec;
import com.squareup.javapoet.TypeSpec;

import java.util.List;

public interface ClassGenerator {
    MethodSpec defineConstructor();

    List defineMethods();

    TypeSpec defineClass();

    JavaFile build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy