Back to project page hello-srch2-android-sdk.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project hello-srch2-android-sdk 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.srch2.android.demo.helloworld; /*from w ww . j a v a 2 s. co m*/ public class MovieSearchResult { // This class is a model for the SearchResultsAdapter data set. // Its field represents the visible data of a MovieIndex record. private String mTitle; private String mGenre; private int mYear; public String getTitle() { return mTitle; } public String getGenre() { return mGenre; } public int getYear() { return mYear; } public MovieSearchResult(String title, String genre, int year) { mTitle = title; mGenre = genre; mYear = year; } }