Back to project page Xbox360CollectorsPlace.
The source code is released under:
MIT License
If you think the Android project Xbox360CollectorsPlace 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.xboxcollectorsplace.bl.entities; /*from ww w. jav a2 s . co m*/ import java.io.Serializable; import java.util.ArrayList; /** * Entity used to Store the collection/catalog */ public class Catalog implements Serializable { /*--------------------------------------------------------------- CONSTANTS */ private static final long serialVersionUID = 6605598678482270963L; /*--------------------------------------------------------------- VARIABLES */ private ArrayList<Game> catalog; /*--------------------------------------------------------------- CONSTRUCTOR */ public Catalog() { super(); } public Catalog(ArrayList<Game> catalog) { super(); this.catalog = catalog; } /*--------------------------------------------------------------- GETTERS */ public ArrayList<Game> getCatalog() { return catalog; } /*--------------------------------------------------------------- SETTERS */ public void setCatalog(ArrayList<Game> catalog) { this.catalog = catalog; } }