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 . ja v a 2s . c om*/ /** * Created by sathley on 4/25/2014. */ public class Actor { public String mName; public String mUrl; public Actor(String name, String url) { this.mName = name; this.mUrl = url; } }