Back to project page acceptableLosses.
The source code is released under:
MIT License
If you think the Android project acceptableLosses 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 acceptableLosses.components; // www. j av a 2 s .c o m import com.artemis.PooledComponent; import com.stewsters.util.types.Gender; public class Citizen extends PooledComponent { public String firstName; public String lastName; public Gender gender; @Override protected void reset() { firstName = null; lastName = null; gender = null; } public Citizen set(String firstName, String lastName, Gender gender) { this.firstName = firstName; this.lastName = lastName; this.gender = gender; return this; } }