Back to project page khandroid.
The source code is released under:
Apache License
If you think the Android project khandroid 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.github.khandroid.misc; /* w w w.j a va2 s . co m*/ import hirondelle.date4j.DateTime; public class DateTimeHelper { public static DateTime plusMinutes(DateTime src, int minutesToAdd) { return src.plus(0, 0, 0, 0, minutesToAdd, 0, 0, DateTime.DayOverflow.Spillover); } }