网页框控件插件。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
791 B

package com.fr.plugin.form.widget.ui;
import com.fr.design.beans.FurtherBasicBeanPane;
import com.fanruan.api.design.ui.component.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<RHIframeSource>{
@Override
protected List<FurtherBasicBeanPane<? extends RHIframeSource>> initPaneList() {
List<FurtherBasicBeanPane<? extends RHIframeSource>> list = new ArrayList<FurtherBasicBeanPane<? extends RHIframeSource>>();
list.add(new TemplateSourcePane());
list.add(new URLSourcePane());
return list;
}
@Override
protected String title4PopupWindow() {
return "Source";
}
}