|
|
|
@ -58,7 +58,6 @@ public final class FunctionConstants {
|
|
|
|
|
public static FunctionGroup ALL = getAllFunctionGroup(); |
|
|
|
|
public static List<String> abandonFormulas = Arrays.asList("CIRCULAR", "CROSSLAYERTOTAL", "HIERARCHY", "LAYERTOTAL"); |
|
|
|
|
public static NameAndFunctionList NEW = getNewFunctionList(); |
|
|
|
|
private static List<String> shieldedFormulas = Arrays.asList("ENBYSTRNUM","TEXTGETNUM" ,"GETCHARNUM","GCD", "LCM"); |
|
|
|
|
|
|
|
|
|
static { |
|
|
|
|
loadEmbededFunctions(); |
|
|
|
@ -103,7 +102,7 @@ public final class FunctionConstants {
|
|
|
|
|
if (StableUtils.classInstanceOf(cls, iface)) { |
|
|
|
|
Function inst; |
|
|
|
|
inst = (Function) cls.newInstance(); |
|
|
|
|
if (abandonFormulas.contains(inst.getClass().getSimpleName()) || shieldedFormulas.contains(inst.getClass().getSimpleName())) { |
|
|
|
|
if (abandonFormulas.contains(inst.getClass().getSimpleName())) { |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
for (NameAndTypeAndFunctionList EMBFUNCTION : EMBFUNCTIONS) { |
|
|
|
@ -289,7 +288,8 @@ public final class FunctionConstants {
|
|
|
|
|
|
|
|
|
|
private static NameAndFunctionList getNewFunctionList() { |
|
|
|
|
return new NameAndFunctionList(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_FormulaD_New"), new Function[]{ |
|
|
|
|
new ENDOFMONTH(), new NUMTOZH(), new MIDCHAR(), new ISWORKDAY() |
|
|
|
|
new ENDOFMONTH(), new NUMTOZH(), new MIDCHAR(), new ISWORKDAY(),new ENBYSTRNUM(), new TEXTGETNUM(), |
|
|
|
|
new GETCHARNUM(), new GCD(), new LCM() |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|