Back to project page android-crackme-challenge.
The source code is released under:
MIT License
If you think the Android project android-crackme-challenge 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.reoky.crackme.challengethree.model; //from w w w . j a v a2s . com import android.content.Context; /** * A simple class to hold parameters for PageSearch */ public class PageSearchBundle { private Context context; private String url; private String keyword; public PageSearchBundle(Context context, String url, String keyword) { this.context = context; this.url = url; this.keyword = keyword; } public Context getContext() { return context; } public String getUrl() { return url; } public String getKeyword() { return keyword; } };