Back to project page generalsbuzz.
The source code is released under:
MIT License
If you think the Android project generalsbuzz 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 me.kworden.wlcalendar2.struct; //from ww w. ja v a2 s. co m public class WLHeader extends WLEvent { public WLHeader(String p_title) { title = p_title; type = WLEventClassifier.HEADER; date = null; location = null; info = null; time = null; } }