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.
17 lines
399 B
17 lines
399 B
package com.fanruan.api.report.form.category; |
|
|
|
import com.fanruan.api.report.form.BaseWidget; |
|
|
|
/** |
|
* @author richie |
|
* @version 10.0 |
|
* Created by richie on 2019-09-19 |
|
* 初始化时只有配置的控件,没有数据设置,典型的比如按钮、标签等 |
|
*/ |
|
public abstract class PlainWidget extends BaseWidget { |
|
|
|
@Override |
|
public boolean isEditor() { |
|
return false; |
|
} |
|
}
|
|
|