Author: julien(a)jboss.com
Date: 2007-06-14 19:20:26 -0400 (Thu, 14 Jun 2007)
New Revision: 7428
Modified:
trunk/faces/src/main/org/jboss/portal/faces/el/ClassConstantPublisherBean.java
Log:
minor javadoc update
Modified: trunk/faces/src/main/org/jboss/portal/faces/el/ClassConstantPublisherBean.java
===================================================================
---
trunk/faces/src/main/org/jboss/portal/faces/el/ClassConstantPublisherBean.java 2007-06-14
23:17:48 UTC (rev 7427)
+++
trunk/faces/src/main/org/jboss/portal/faces/el/ClassConstantPublisherBean.java 2007-06-14
23:20:26 UTC (rev 7428)
@@ -31,17 +31,17 @@
/**
* An implementation of <code>DynamicBean</code> which exposes all the fields
on a class which are
- * public and static. The properties are read only and cannot be modified.
+ * public and static. The properties are read only and cannot be modified. It allows to
use
+ * constant names from expression language rather than the constant values directly.
*
+ * The semantics to obtain values from a class are the same defined by the Java Language
Specification.
+ *
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
public class ClassConstantPublisherBean implements DynamicBean
{
- /** . */
- private static final int PUBLIC_STATIC_MODS = Modifier.STATIC | Modifier.PUBLIC;
-
/** The class name. */
private String className;
Show replies by date