forked from fanruan/finekit
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.
21 lines
673 B
21 lines
673 B
package com.fanruan.api.report.form.category; |
|
|
|
import com.fanruan.api.report.form.BaseWidget; |
|
import com.fr.form.ui.LayoutBorderStyle; |
|
import com.fr.form.ui.PaddingMargin; |
|
import com.fr.form.ui.RichStyleWidgetProvider; |
|
import com.fr.general.Background; |
|
import com.fr.general.act.BorderPacker; |
|
|
|
/** |
|
* @author richie |
|
* @version 10.0 |
|
* Created by richie on 2019/10/25 |
|
* 带边框和样式设置的控件基类 |
|
*/ |
|
public abstract class BaseBorderStyleWidget extends BaseWidget implements RichStyleWidgetProvider { |
|
|
|
private BorderPacker borderStyle = new LayoutBorderStyle(); |
|
private Background background; |
|
private PaddingMargin margin = new PaddingMargin(); |
|
}
|
|
|