All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zkoss.bind.converter.sys.RadiogroupModelConverter Maven / Gradle / Ivy

There is a newer version: 10.0.0-jakarta
Show newest version
/* RadiogroupModelConverter.java

	Purpose:
		
	Description:
		
	History:
		2011/12/12 Created by Dennis Chen

Copyright (C) 2011 Potix Corporation. All Rights Reserved.
*/
package org.zkoss.bind.converter.sys;

import org.zkoss.bind.Converter;
import org.zkoss.zul.ListModel;
import org.zkoss.zul.Radiogroup;

/**
 * The {@link Converter} implementation of the radiogroup for converting collection to ListModel and vice versa.
 * @author dennis
 * @since 6.0.0
 */
public class RadiogroupModelConverter extends AbstractListModelConverter {
	private static final long serialVersionUID = 1463169907348730644L;

	protected ListModel getComponentModel(Radiogroup comp) {
		return comp.getModel();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy