The Google JavaDocs for Java API for CalendarEventEntry indicate that the "clone" method is inherited from "Object" but the Eclipse IDE tells me that it is not visible when I try:
CalendarEventEntry myEvent = new CalendarEventEntry(); CalendarEventEntry myEvents[] = new CalendarEventEntry[3]; set entry values and then attempt: myEvents[ei++] = (CalendarEventEntry) myEvent.clone(); This generates an exception? I need an array of events to submit to CalendarEventBatch and do not know in advance how many events will be needed. Please, can anyone give me a clue? I am not finding any clues in the Google docs. Thanks, r -- You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi?hl=en.
