Back to project page playnomics-android.
The source code is released under:
Apache License
If you think the Android project playnomics-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.playnomics.android.messaging; /*from w w w . j av a2s . co m*/ public class HtmlCloseButton extends CloseButton { private String closeLink; public String getCloseLink() { return closeLink; } public void setCloseLink(String closeLink) { this.closeLink = closeLink; } public HtmlCloseButton(String closeLink) { this.closeLink = closeLink; } }