Back to project page sana.
The source code is released under:
Copyright (c) 2010, Moca All rights reserved. The source code for Moca is licensed under the BSD license as follows: Redistribution and use in source and binary forms, with or without modification, ...
If you think the Android project sana 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 org.moca.db; // www .jav a 2 s . com import java.util.HashMap; import java.util.Map; public class NotificationMessage { public NotificationMessage() { receivedMessages = 0; totalMessages = 0; messages = new HashMap<Integer,String>(); } public int receivedMessages; public int totalMessages; public Map<Integer, String> messages; }