[jboss-svn-commits] JBL Code SVN: r12247 - labs/jbossrules/trunk/drools-decisiontables/src/test/java/org/drools/decisiontable/parser.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Wed May 30 20:20:16 EDT 2007
Author: KrisVerlaenen
Date: 2007-05-30 20:20:16 -0400 (Wed, 30 May 2007)
New Revision: 12247
Modified:
labs/jbossrules/trunk/drools-decisiontables/src/test/java/org/drools/decisiontable/parser/ExternalSheetListenerTest.java
Log:
JBRRULES-770: Expose the enter and exit events for RuleFlow
- core + IDE (audit view) now supports 4 events for ruleflow (groups)
JBRULES-893: Realtime audit view
- First code for realtime audit view when selecting WorkingMemoryInMemoryLogger
JBRULES-894: Support for .package files in IDE
- .package files supported
Minor fixed for ruleflow
- empty ruleflow-groups now automatically deactivate when triggered
- fixed bug in split instance lookup
- removed all Ixxx interfaces in ruleflow
Modified: labs/jbossrules/trunk/drools-decisiontables/src/test/java/org/drools/decisiontable/parser/ExternalSheetListenerTest.java
===================================================================
--- labs/jbossrules/trunk/drools-decisiontables/src/test/java/org/drools/decisiontable/parser/ExternalSheetListenerTest.java 2007-05-31 00:20:11 UTC (rev 12246)
+++ labs/jbossrules/trunk/drools-decisiontables/src/test/java/org/drools/decisiontable/parser/ExternalSheetListenerTest.java 2007-05-31 00:20:16 UTC (rev 12247)
@@ -21,8 +21,9 @@
import org.drools.WorkingMemory;
import org.drools.concurrent.Future;
import org.drools.event.AgendaEventListener;
+import org.drools.event.RuleFlowEventListener;
import org.drools.event.WorkingMemoryEventListener;
-import org.drools.ruleflow.common.instance.IProcessInstance;
+import org.drools.ruleflow.common.instance.ProcessInstance;
import org.drools.spi.AgendaFilter;
import org.drools.spi.AgendaGroup;
import org.drools.spi.AsyncExceptionHandler;
@@ -115,6 +116,10 @@
}
+ public void addEventListener(RuleFlowEventListener arg0) {
+
+ }
+
public FactHandle assertObject(Object fact)
throws FactException {
if (fact instanceof Row) {
@@ -207,6 +212,10 @@
}
+ public void removeEventListener(RuleFlowEventListener arg0) {
+
+ }
+
public void retractObject(FactHandle arg0) throws FactException {
}
@@ -231,7 +240,7 @@
}
- public IProcessInstance startProcess(String processId) {
+ public ProcessInstance startProcess(String processId) {
return null;
}
More information about the jboss-svn-commits
mailing list