Print

Print


Author: [log in to unmask]
Date: Fri Jan 23 18:38:57 2015
New Revision: 1983

Log:
Just minor comment changes.

Modified:
    java/trunk/conditions/src/main/java/org/hps/conditions/database/ConverterRegistry.java

Modified: java/trunk/conditions/src/main/java/org/hps/conditions/database/ConverterRegistry.java
 =============================================================================
--- java/trunk/conditions/src/main/java/org/hps/conditions/database/ConverterRegistry.java	(original)
+++ java/trunk/conditions/src/main/java/org/hps/conditions/database/ConverterRegistry.java	Fri Jan 23 18:38:57 2015
@@ -13,9 +13,11 @@
 
 /**
  * This is a registry of all available conditions converters.
- * These classes are found using reflection.  Only converters
- * with a {@link Table} annotation are loaded, and the class
- * must not be abstract.
+ * These classes are found using reflection.  An anonymous converter
+ * is created on the fly for {@link org.hps.conditions.api.ConditionsObject} 
+ * classes with a {@link Table}, and the class itself must not be abstract.
+ * If the {@link Converter} annotation is set on the class, then this
+ * is used to instantiate the specific converter class instead.
  * 
  * @see ConditionsObjectConverter
  *