com.appsingularity.postman.compiler.model.CollectedClass 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.model;
import android.support.annotation.NonNull;
import com.appsingularity.postman.compiler.Logger;
import com.appsingularity.postman.compiler.writers.CollectedClassWriter;
import java.util.List;
import javax.lang.model.element.Element;
import javax.lang.model.util.Elements;
import javax.lang.model.util.Types;
public interface CollectedClass {
Element getClassElement();
List getFields();
void addChild(@NonNull Logger logger, @NonNull Types types, @NonNull Elements elements, @NonNull Element child);
CollectedClassWriter getWriter();
}