diff --git a/docs/config_modifiers.html b/docs/config_modifiers.html
index 246d0de58..6b5402751 100644
--- a/docs/config_modifiers.html
+++ b/docs/config_modifiers.html
@@ -124,10 +124,12 @@ Language specification, section 9.4).
VisibilityModifier
- Checks visibility of class members. Only static final members may be public;
- other class members must be private unless property
- protectedAllowed or packageAllowed is set.
+ Checks visibility of class members. Only static final members
+ may be public; other class members must be private unless
+ property protectedAllowed or packageAllowed is set.
+
Public members are not flagged if the name matches the public
member regular expression (contains ).
class="code">"^f[A-Z][a-zA-Z0-9]*$" in the default
pattern to allow CMP for EJB 1.1 with the default settings.
With EJB 2.0 it is not longer necessary to have public access
- for persistent fields.
+ for persistent fields, hence the default has been changed.
Rationale: Enforce encapsulation.
@@ -167,7 +169,7 @@ Language specification, section 9.4).
publicMemberPattern |
pattern for public members that should be ignored |
regular expression |
- ^f[A-Z][a-zA-Z0-9]*$ |
+ ^serialVersionUID$ |
Examples
diff --git a/docs/config_naming.html b/docs/config_naming.html
index 0aed4447f..859901bb8 100644
--- a/docs/config_naming.html
+++ b/docs/config_naming.html
@@ -63,7 +63,7 @@
| MemberName |
- non-public, non-static fields |
+ non-static fields |
^[a-z][a-zA-Z0-9]*$ |
@@ -81,11 +81,6 @@
| parameters |
^[a-z][a-zA-Z0-9]*$ |
-
- | PublicMemberName |
- public, non-static fields |
- ^f[A-Z][a-zA-Z0-9]*$ |
-
| StaticVariableName |
static, non-final fields |
@@ -136,4 +131,4 @@ Copyright © 2002 Oliver Burn. All rights Reserved.