001/* 002 * (C) Copyright 2013 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.forms.layout.facelets.plugins; 020 021import java.io.IOException; 022 023import javax.faces.component.UIComponent; 024import javax.faces.component.html.HtmlSelectOneRadio; 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; 030 031/** 032 * Displays a select one radio in edit mode, taking into account select options declared on the widget. 033 * <p> 034 * Only edit mode is implemented for now. 035 * 036 * @since 5.7.3 037 */ 038public class SelectOneRadioWidgetTypeHandler extends AbstractSelectWidgetTypeHandler { 039 040 public SelectOneRadioWidgetTypeHandler(TagConfig config) { 041 super(config); 042 } 043 044 @Override 045 public void apply(FaceletContext ctx, UIComponent parent, Widget widget) throws WidgetException, IOException { 046 apply(ctx, parent, widget, HtmlSelectOneRadio.COMPONENT_TYPE); 047 } 048 049}