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.
16 lines
457 B
16 lines
457 B
6 years ago
|
package com.fr.plugin.core;
|
||
|
|
||
|
import com.fr.intelli.record.Focus;
|
||
|
import com.fr.intelli.record.Original;
|
||
|
import com.fr.record.analyzer.EnableMetrics;
|
||
|
import com.fr.stable.fun.impl.AbstractLocaleFinder;
|
||
|
|
||
|
@EnableMetrics
|
||
|
public class MyLocaleFinder extends AbstractLocaleFinder {
|
||
|
@Override
|
||
|
@Focus(id = "com.fr.plugin.function", text = "插件全家桶", source = Original.PLUGIN)
|
||
|
public String find() {
|
||
|
return "com/fr/plugin/demo";
|
||
|
}
|
||
|
}
|