com.jzallas.lifecycleaware.compiler.generators.ClassGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lifecycleaware-compiler Show documentation
Show all versions of lifecycleaware-compiler Show documentation
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