Back to project page Interkassa_android.
The source code is released under:
Apache License
If you think the Android project Interkassa_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 com.interkassa.models; //www . j ava 2 s. com public class HTMLWithBaseUrl { String HTML; String baseUrl; public HTMLWithBaseUrl(String hTML, String baseUrl) { super(); HTML = hTML; this.baseUrl = baseUrl; } public String getHTML() { return HTML; } public void setHTML(String hTML) { HTML = hTML; } public String getBaseUrl() { return baseUrl; } public void setBaseUrl(String baseUrl) { this.baseUrl = baseUrl; } }