/* * Copyright (C) 2009-2011 Open Wide * Contact: contact@openwide.fr * * 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 fr.openwide.core.wicket.more.markup.html.basic; import org.apache.wicket.model.IModel; import org.apache.wicket.util.convert.IConverter; import fr.openwide.core.jpa.more.business.generic.model.GenericLocalizedGenericListItem; import fr.openwide.core.wicket.markup.html.basic.CoreLabel; import fr.openwide.core.wicket.more.rendering.LocalizedGenericListItemRenderer; /** * Use {@code new CoreLabel(id, model)} and register a {@code Renderer} for the specific type instead. * Use {@code new CoreLabel(id, MyTypeRenderer.get(...).asModel(model))} to display with a non-default renderer. * @deprecated */ @Deprecated public class LocalizedGenericListItemLabel extends CoreLabel { private static final long serialVersionUID = -902689514465301799L; public LocalizedGenericListItemLabel(String id, IModel<? extends GenericLocalizedGenericListItem<?, ?>> listItemModel) { super(id, listItemModel); } @SuppressWarnings("unchecked") @Override public <C> IConverter<C> getConverter(Class<C> type) { if (GenericLocalizedGenericListItem.class.isAssignableFrom(type)) { return (IConverter<C>) LocalizedGenericListItemRenderer.get(); } else { return super.getConverter(type); } } }