[weld-commits] Weld SVN: r6391 - extensions/trunk/src/main/java/org/jboss/weld/extensions/util/properties/query.
weld-commits at lists.jboss.org
weld-commits at lists.jboss.org
Wed Jun 2 19:05:14 EDT 2010
Author: shane.bryzak at jboss.com
Date: 2010-06-02 19:05:13 -0400 (Wed, 02 Jun 2010)
New Revision: 6391
Modified:
extensions/trunk/src/main/java/org/jboss/weld/extensions/util/properties/query/PropertyQuery.java
Log:
javadoc
Modified: extensions/trunk/src/main/java/org/jboss/weld/extensions/util/properties/query/PropertyQuery.java
===================================================================
--- extensions/trunk/src/main/java/org/jboss/weld/extensions/util/properties/query/PropertyQuery.java 2010-06-02 22:50:55 UTC (rev 6390)
+++ extensions/trunk/src/main/java/org/jboss/weld/extensions/util/properties/query/PropertyQuery.java 2010-06-02 23:05:13 UTC (rev 6391)
@@ -9,9 +9,16 @@
import org.jboss.weld.extensions.util.properties.Property;
/**
- * Queries a target class for properties that match certain criteria
+ * Queries a target class for properties that match certain criteria. A
+ * property may either be a private or public field, declared by the target
+ * class or inherited from a superclass, or a public method declared by the
+ * target class or inherited from any of its superclasses. For properties that
+ * are exposed via a method, the property must be a JavaBean style property, i.e.
+ * it must provide both an accessor and mutator method according to the JavaBean
+ * specification.
*
- * @see PropertyQueries
+ * This class is not thread-safe, however the result returned by the
+ * getResultList() method is.
*
* @author Shane Bryzak
*/
More information about the weld-commits
mailing list