Back to project page TheGamesDB-Android-app.
The source code is released under:
GNU General Public License
If you think the Android project TheGamesDB-Android-app 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 dragni.tgb.thegamesdb.entity; /*w w w .j a v a 2 s . c o m*/ import java.util.ArrayList; public class GameList extends ArrayList<Game> { private static final long serialVersionUID = -6940419301391447425L; public Game getLastGame() { int lastGameLocation = this.size(); lastGameLocation--; Game game = this.get(lastGameLocation); return game; } }