forked from fanruan/demo-show-type
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.
29 lines
689 B
29 lines
689 B
5 years ago
|
package com.fr.plugin.showtype;
|
||
|
|
||
|
import com.fr.decision.authority.base.constant.type.show.ShowType;
|
||
|
import com.fr.intelli.record.Focus;
|
||
|
import com.fr.intelli.record.Original;
|
||
|
import com.fr.record.analyzer.EnableMetrics;
|
||
|
|
||
|
/**
|
||
|
* @Author Roger
|
||
|
* @Date 2020/8/18 18:18
|
||
|
* @Version 10.0
|
||
|
*/
|
||
|
@EnableMetrics
|
||
|
public class NewPreviewType extends ShowType {
|
||
|
|
||
|
public static final NewPreviewType KEY = new NewPreviewType();
|
||
|
|
||
|
@Override
|
||
|
@Focus(id = "com.fr.plugin.showtype.v10", text = "Fine-Plugin_New_Preview_Type", source = Original.PLUGIN)
|
||
|
protected int getTypeValue() {
|
||
|
return 8;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getTypeName() {
|
||
|
return "newPreview";
|
||
|
}
|
||
|
}
|