Java tutorial
/* * Copyright 2013~2014 Dan Haywood * * Licensed under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.isisaddons.wicket.fullcalendar2.cpt.ui; import java.util.Collection; import java.util.Set; import com.google.common.collect.Iterables; import com.google.common.collect.Sets; import org.apache.isis.core.metamodel.adapter.ObjectAdapter; import org.apache.isis.viewer.wicket.model.models.EntityCollectionModel; import net.ftlines.wicket.fullcalendar.EventProvider; public class CalendarableCollectionAsFullCalendar2 extends CalendaredCollectionAbstract { private static final long serialVersionUID = 1L; public CalendarableCollectionAsFullCalendar2(final String id, final EntityCollectionModel model) { super(id, model); } @Override protected EventProvider newEventProvider(final EntityCollectionModel model, final String calendarName) { return new CalendarableEventProvider(model, calendarName); } @Override protected Set<String> getCalendarNames(final Collection<ObjectAdapter> entityList) { return Sets.newLinkedHashSet( Iterables.concat(Iterables.transform(entityList, CalendarableEventProvider.GET_CALENDAR_NAMES))); } }