[jboss-svn-commits] JBL Code SVN: r35575 - labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/conf.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Oct 19 16:28:49 EDT 2010


Author: laune
Date: 2010-10-19 16:28:48 -0400 (Tue, 19 Oct 2010)
New Revision: 35575

Modified:
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/conf/KeepReferenceOption.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/conf/QueryListenerOption.java
Log:
extend and fix javadoc


Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/conf/KeepReferenceOption.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/conf/KeepReferenceOption.java	2010-10-19 17:50:34 UTC (rev 35574)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/conf/KeepReferenceOption.java	2010-10-19 20:28:48 UTC (rev 35575)
@@ -19,10 +19,8 @@
 
 /**
  * Option to configure if the knowledge base should retain a reference to the 
- * knowledge session or not.
+ * knowledge session or not. The default is YES, i.e., the reference is retained.
  * 
- * default == true
- * 
  * @author etirelli
  */
 public enum KeepReferenceOption implements SingleValueKnowledgeSessionOption {

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/conf/QueryListenerOption.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/conf/QueryListenerOption.java	2010-10-19 17:50:34 UTC (rev 35574)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/conf/QueryListenerOption.java	2010-10-19 20:28:48 UTC (rev 35575)
@@ -19,12 +19,12 @@
 /**
  * An enum to configure the session query listener configuration.
  * 
- * Queries results are collected by a listener class. The "STANDARD"
+ * Query results are collected by a listener class. The "STANDARD"
  * query listener class copies and disconnects fact handles and objects
- * for the query results making them somewhat resilient to some working
- * memory actions. Although, this copy is costly. For the cases where
+ * for query results, making them somewhat resilient to some working
+ * memory actions. But this copying is costly. For the cases where
  * no concurrency exists between query execution and other working memory
- * action, a light weight listener implementation can be used, preventing
+ * actions, a lightweight listener implementation can be used, preventing
  * the copy and improving query performance significantly.
  *  
  * 



More information about the jboss-svn-commits mailing list