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.
31 lines
626 B
31 lines
626 B
4 years ago
|
/*
|
||
|
* Copyright (C), 2015-2019
|
||
|
* FileName: LocaleFinder
|
||
|
* Author: Louis
|
||
|
* Date: 2019/9/4 16:20
|
||
|
* Description: LocaleFinder
|
||
|
* History:
|
||
|
* <author> <time> <version> <desc>
|
||
|
*/
|
||
|
package com.fr.plugin.hdbk;
|
||
|
|
||
|
import com.fr.stable.fun.impl.AbstractLocaleFinder;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <LocaleFinder>
|
||
|
*
|
||
|
* @author Louis
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class LocaleFinder extends AbstractLocaleFinder {
|
||
|
@Override
|
||
|
public String find() {
|
||
|
return "com/fr/plugin/hdbk/locale/lang";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int currentAPILevel() {
|
||
|
return CURRENT_LEVEL;
|
||
|
}
|
||
|
}
|