package com.fr.plugin.form.widget.ui; import com.fr.design.beans.FurtherBasicBeanPane; import com.fr.design.gui.frpane.UIRadioPane; import com.fr.plugin.form.widget.core.RHIframeSource; import java.util.ArrayList; import java.util.List; /** * Created by richie on 15/12/2. */ public class SourceRadioPane extends UIRadioPane{ @Override protected List> initPaneList() { List> list = new ArrayList>(); list.add(new TemplateSourcePane()); list.add(new URLSourcePane()); return list; } @Override protected String title4PopupWindow() { return "Source"; } }