Back to project page Movie-Mania.
The source code is released under:
MIT License
If you think the Android project Movie-Mania 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.appacitive.moviemania.app; // ww w. j a v a 2 s . c om /** * Created by sathley on 4/25/2014. */ public class Movie { public String mName; public String mPosterUrl; public long mId; public Movie(long id, String name, String url) { this.mId = id; this.mName = name; this.mPosterUrl = url; } }