Back to project page carousel-android.
The source code is released under:
The Code Project Open License (CPOL) 1.02 Preamble This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as par...
If you think the Android project carousel-android 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 fr.rolandl.sample.carousel.bo; /*from w w w . j a v a 2 s. com*/ import java.io.Serializable; /** * @author Ludovic ROLAND * @since 2014.12.20 */ public final class Photo implements Serializable { private static final long serialVersionUID = 1L; public final String name; public final String image; public Photo(String name, String image) { this.name = name; this.image = image; } }