com.appsingularity.postman.compiler.writers.CollectedFieldWriter 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 com.squareup.javapoet.MethodSpec;
public interface CollectedFieldWriter {
void writeShipMethod(@NonNull MethodSpec.Builder shipMethod);
void writeReceiveMethod(@NonNull MethodSpec.Builder receiveMethod);
}