001/*
002 * (C) Copyright 2014 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Anahide Tchertchian
018 */
019package org.nuxeo.ecm.platform.contentview.jsf.facelets.plugins;
020
021import java.io.IOException;
022
023import javax.faces.component.UIComponent;
024import javax.faces.component.html.HtmlSelectManyCheckbox;
025import javax.faces.view.facelets.FaceletContext;
026import javax.faces.view.facelets.TagConfig;
027
028import org.nuxeo.ecm.platform.forms.layout.api.Widget;
029import org.nuxeo.ecm.platform.forms.layout.api.exceptions.WidgetException;
030import org.nuxeo.ecm.platform.ui.web.renderer.NxSelectManyCheckboxListRenderer;
031
032/**
033 * @since 6.0
034 */
035public class SelectManyCheckboxDirectoryAggregateWidgetTypeHandler extends SelectDirectoryAggregateWidgetTypeHandler {
036
037    public SelectManyCheckboxDirectoryAggregateWidgetTypeHandler(TagConfig config) {
038        super(config);
039    }
040
041    @Override
042    public void apply(FaceletContext ctx, UIComponent parent, Widget widget) throws WidgetException, IOException {
043        apply(ctx, parent, widget, HtmlSelectManyCheckbox.COMPONENT_TYPE,
044                NxSelectManyCheckboxListRenderer.RENDERER_TYPE);
045    }
046
047}