|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
FunctionsFactory.java | - | - | - | - |
|
1 | package org.drools.smf; | |
2 | ||
3 | import org.drools.rule.RuleSet; | |
4 | import org.drools.spi.Functions; | |
5 | import org.drools.spi.RuleBaseContext; | |
6 | ||
7 | public interface FunctionsFactory | |
8 | { | |
9 | Functions newFunctions(RuleSet ruleSet, | |
10 | RuleBaseContext context, | |
11 | Configuration config) throws FactoryException; | |
12 | } |
|