Back to project page MyNote.
The source code is released under:
MIT License
If you think the Android project MyNote 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.app.mynote.util; public class Constants { public static String[] days = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; public static String[] month = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}; public static int[] num_of_days = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; public static int year = 2014; }