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.sqlite; // ww w. ja va 2 s .c om public class BookSearchResult { public String mTitle; public String mAuthor; public int mYear; public String getAuthor() { return mAuthor; } public String getTitle() { return mTitle; } public int getYear() { return mYear; } public BookSearchResult(String title, String author, int year) { mAuthor = author; mTitle = title; mYear = year; } }