9 changed files with 142 additions and 23 deletions
@ -0,0 +1,15 @@ |
|||||||
|
package com.fr.solution.plugin.design.formula.compat; |
||||||
|
|
||||||
|
import com.fr.stable.script.FunctionDef; |
||||||
|
|
||||||
|
/** |
||||||
|
* 函数名和描述 |
||||||
|
* @author Kalven |
||||||
|
* @version 10.0 |
||||||
|
* Created by Kalven on 2019/8/31 |
||||||
|
*/ |
||||||
|
public class FunctionDefNAD extends com.fr.design.formula.FunctionDefNAD { |
||||||
|
public FunctionDefNAD(FunctionDef functionDef) { |
||||||
|
super(functionDef); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
package com.fr.solution.plugin.design.formula.compat; |
||||||
|
|
||||||
|
import com.fr.stable.script.Function; |
||||||
|
|
||||||
|
import java.util.Arrays; |
||||||
|
|
||||||
|
/** |
||||||
|
* 名称对应的函数列表 |
||||||
|
* @author Kalven |
||||||
|
* @version 10.0 |
||||||
|
* Created by Kalven on 2019/8/31 |
||||||
|
*/ |
||||||
|
public class NameAndFunctionList extends com.fr.design.formula.NameAndFunctionList { |
||||||
|
public NameAndFunctionList(String name, Function[] fns) { |
||||||
|
super(name, fns); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
package com.fr.solution.plugin.design.formula.compat; |
||||||
|
|
||||||
|
import com.fr.stable.script.Function; |
||||||
|
|
||||||
|
/** |
||||||
|
* 名字和类型对应的函数列表 |
||||||
|
* @author Kalven |
||||||
|
* @version 10.0 |
||||||
|
* Created by Kalven on 2019/8/31 |
||||||
|
*/ |
||||||
|
public class NameAndTypeAndFunctionList extends com.fr.design.formula.NameAndTypeAndFunctionList { |
||||||
|
public NameAndTypeAndFunctionList(String name, Function.Type type) { |
||||||
|
super(name, type); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue