forked from fanruan/demo-chart-pie
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.
20 lines
460 B
20 lines
460 B
6 years ago
|
package com.fr.plugin.demo;
|
||
|
|
||
|
import com.fr.plugin.transform.ExecuteFunctionRecord;
|
||
|
import com.fr.plugin.transform.FunctionRecorder;
|
||
|
import com.fr.stable.fun.impl.AbstractLocaleFinder;
|
||
|
|
||
|
/**
|
||
|
* @author Bjorn
|
||
|
* @version 10.0
|
||
|
* Created by Bjorn on 2019-09-25
|
||
|
*/
|
||
|
@FunctionRecorder
|
||
|
public class DemoLocaleFinder extends AbstractLocaleFinder {
|
||
|
@Override
|
||
|
@ExecuteFunctionRecord
|
||
|
public String find() {
|
||
|
return "com/fr/plugin/locale/demo";
|
||
|
}
|
||
|
}
|