com.appsingularity.postman.compiler.writers.CollectedClassWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of postman-compiler Show documentation
Show all versions of postman-compiler Show documentation
Easy parceling for Android.
package com.appsingularity.postman.compiler.writers;
import android.support.annotation.NonNull;
import java.io.IOException;
import javax.annotation.processing.Filer;
import javax.lang.model.util.Elements;
public interface CollectedClassWriter {
void writeToFile(@NonNull Elements elements, @NonNull Filer filer)
throws IOException;
}