Method clone()
Return type:
java.lang.Object
Member of:
java.util.Calendar
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
protected IgluGregCalendar fromDate = (IgluGregCalendar)toDate.clone();
2
mIntervalStart = (Calendar)cal.clone();
3
calendar = (Calendar)calendar.clone();
4
GregorianCalendar cal = (GregorianCalendar) theInventoryReportSchedule.theBase.clone();
5
return ((until != null) ? (Calendar)until.clone() : null);
6
Calendar end = (Calendar) start.clone();
7
calendar = (Calendar) calendar.clone();
8
GregorianCalendar nextCalendar = (GregorianCalendar)startCalendar.clone();
9
Calendar tempEnd = (Calendar)end.clone();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.