createCalendar static method
Implementation
static Calendar createCalendar(
IIterable<String> languages, String calendar, String clock) {
final activationFactory =
CreateActivationFactory(_className, IID_ICalendarFactory);
try {
return ICalendarFactory.fromRawPointer(activationFactory)
.createCalendar(languages, calendar, clock);
} finally {
free(activationFactory);
}
}