001/*
002 * (C) Copyright 2011 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Anahide Tchertchian
016 */
017package org.nuxeo.ecm.platform.forms.layout.facelets.plugins;
018
019import javax.faces.component.html.HtmlSelectOneListbox;
020import javax.faces.view.facelets.FaceletContext;
021import javax.faces.view.facelets.FaceletHandler;
022import javax.faces.view.facelets.TagConfig;
023
024import org.nuxeo.ecm.platform.forms.layout.api.Widget;
025import org.nuxeo.ecm.platform.forms.layout.api.exceptions.WidgetException;
026
027/**
028 * Displays a select one listbox in edit mode, taking into account select options declared on the widget.
029 * <p>
030 * Only edit mode is implemented for now.
031 *
032 * @since 5.4.2
033 */
034public class SelectOneListboxWidgetTypeHandler extends AbstractSelectWidgetTypeHandler {
035
036    private static final long serialVersionUID = 1L;
037
038    @Override
039    public FaceletHandler getFaceletHandler(FaceletContext ctx, TagConfig tagConfig, Widget widget,
040            FaceletHandler[] subHandlers) throws WidgetException {
041        return getFaceletHandler(ctx, tagConfig, widget, subHandlers, HtmlSelectOneListbox.COMPONENT_TYPE);
042    }
043
044}