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 ww. j a va 2 s . co m*/ public class NativeCloseButton extends CloseButton { private Integer height; private Integer width; private String closeImageUrl; private byte[] imageData; public Integer getHeight() { return height; } public void setHeight(Integer height) { this.height = height; } public Integer getWidth() { return width; } public void setWidth(Integer width) { this.width = width; } public String getImageUrl() { return closeImageUrl; } public void setCloseImageUrl(String closeImageUrl) { this.closeImageUrl = closeImageUrl; } public byte[] getImageData() { return imageData; } public void setImageData(byte[] imageData) { this.imageData = imageData; } public NativeCloseButton(Integer height, Integer width, String closeImageUrl) { this.height = height; this.width = width; this.closeImageUrl = closeImageUrl; } }