Back to project page protohipster.
The source code is released under:
Apache License
If you think the Android project protohipster listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.flipper83.protohipster.feed.domain.boundaries; //from w w w . jav a 2 s .co m import java.util.ArrayList; import java.util.List; /** * */ public class FeedBoundary { private boolean success = false; List<HipsterBoundary> hipsters = new ArrayList<HipsterBoundary>(); public boolean isSuccess() { return success; } public void setSuccess(boolean success) { this.success = success; } public List<HipsterBoundary> getHipsters() { return hipsters; } public void add(HipsterBoundary hipster) { hipsters.add(hipster); } }