Back to project page FisgoDroid.
The source code is released under:
The smiley icons bundled with this application belong to Meneame.NET and are licensed under the Creative Commons by-sa 3.0 license. For more information, please visit http://creativecommons.org/licens...
If you think the Android project FisgoDroid 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 net.meneame.fisgodroid.notifications; /*from ww w.j a v a2s . c o m*/ class NotificationElement { private String type; private String baseUrl; private int title; private int count; public NotificationElement(String type, String baseUrl, int title, int count) { this.type = type; this.baseUrl = baseUrl; this.title = title; this.count = count; } public int getTitle() { return title; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getBaseUrl() { return baseUrl; } public void setBaseUrl(String baseUrl) { this.baseUrl = baseUrl; } public int getCount() { return count; } public void setCount(int count) { this.count = count; } }