[jboss-svn-commits] JBL Code SVN: r17148 - labs/jbossrules/trunk/drools-core/src/main/java/org/drools.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Dec 10 02:17:52 EST 2007


Author: michael.neale at jboss.com
Date: 2007-12-10 02:17:52 -0500 (Mon, 10 Dec 2007)
New Revision: 17148

Modified:
   labs/jbossrules/trunk/drools-core/src/main/java/org/drools/StatefulSession.java
Log:
corrected mis spelling in javadoc

Modified: labs/jbossrules/trunk/drools-core/src/main/java/org/drools/StatefulSession.java
===================================================================
--- labs/jbossrules/trunk/drools-core/src/main/java/org/drools/StatefulSession.java	2007-12-10 06:19:51 UTC (rev 17147)
+++ labs/jbossrules/trunk/drools-core/src/main/java/org/drools/StatefulSession.java	2007-12-10 07:17:52 UTC (rev 17148)
@@ -7,10 +7,10 @@
 import org.drools.spi.AgendaFilter;
 
 /**
- * A stateful session represents a working memory which keeps state 
+ * A stateful session represents a working memory which keeps state
  * between invocations (accumulating facts/knowledge).
- * 
- * Caution should be used when using the async methods (take not of the javadocs for specific methods). 
+ *
+ * Caution should be used when using the async methods (take note of the javadocs for specific methods).
  */
 public interface StatefulSession
     extends
@@ -18,7 +18,7 @@
 
     /**
      * Forces the workingMemory to be derefenced from
-     * 
+     *
      */
     void dispose();
 
@@ -26,8 +26,8 @@
      * Insert/Assert an object asynchronously.
      * (return immediately, even while the insertion is taking effect).
      * The returned Future object can be queried to check on the status of the task.
-     * You should only use the async methods if you are sure you require a background 
-     * insertion task to take effect (a new thread may be created). 
+     * You should only use the async methods if you are sure you require a background
+     * insertion task to take effect (a new thread may be created).
      * If you are not sure, then you probably don't need to use it !
      */
     Future asyncInsert(Object object);
@@ -41,8 +41,8 @@
      * Insert/Assert an array of objects..
      * (return immediately, even while the insertion is taking effect).
      * The returned Future object can be queried to check on the status of the task.
-     * You should only use the async methods if you are sure you require a background 
-     * insertion task to take effect (a new thread may be created). 
+     * You should only use the async methods if you are sure you require a background
+     * insertion task to take effect (a new thread may be created).
      * If you are not sure, then you probably don't need to use it !
      */
     Future asyncInsert(Object[] array);
@@ -51,25 +51,25 @@
      * Insert/Assert a collect of objects..
      * (return immediately, even while the insertion is taking effect).
      * The returned Future object can be queried to check on the status of the task.
-     * You should only use the async methods if you are sure you require a background 
-     * insertion task to take effect (a new thread may be created). 
+     * You should only use the async methods if you are sure you require a background
+     * insertion task to take effect (a new thread may be created).
      * If you are not sure, then you probably don't need to use it !
      */
     Future asyncInsert(Collection collect);
 
     /**
-     * This will initiate the firing phase (in the background). 
+     * This will initiate the firing phase (in the background).
      * And return immediately. The returned Future object can be queried
      * to check on the status of the task.
      */
     Future asyncFireAllRules();
 
     /**
-     * This will initiate the firing phase (in the background). 
+     * This will initiate the firing phase (in the background).
      * And return immediately. The returned Future object can be queried
      * to check on the status of the task.
      */
     Future asyncFireAllRules(AgendaFilter agendaFilter);
-    
+
     public List getRuleBaseUpdateListeners();
 }




More information about the jboss-svn-commits mailing list