001/*
002 * (C) Copyright 2014 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-2.1.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.HtmlSelectManyMenu;
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 * @since 6.0
029 */
030public class SelectManyMenuWidgetTypeHandler extends AbstractSelectWidgetTypeHandler {
031
032    private static final long serialVersionUID = 1L;
033
034    @Override
035    public FaceletHandler getFaceletHandler(FaceletContext ctx, TagConfig tagConfig, Widget widget,
036            FaceletHandler[] subHandlers) throws WidgetException {
037        return getFaceletHandler(ctx, tagConfig, widget, subHandlers, HtmlSelectManyMenu.COMPONENT_TYPE, null);
038    }
039
040}