diff --git a/docs/config_naming.html b/docs/config_naming.html index cb519cbca..e4de6c7b0 100644 --- a/docs/config_naming.html +++ b/docs/config_naming.html @@ -85,6 +85,28 @@ specifies the format for parameter names. The property type is ^[a-z][a-zA-Z0-9]*$.
+The property checkstyle.pattern.package specifies +the format for class and interface names. The property type is +regular expression and defaults to +^[a-z]+(\.[a-zA-Z_][a-zA-Z_0-9]*)*$.
+ ++The default value of checkstyle.pattern.package +has been chosen to match the requirements in the + +Java Language specification and the Sun coding conventions. +However both underscores and uppercase letters are rather uncommon, so most projects +should probably use +checkstyle.pattern.package=^[a-z]+(\.[a-z][a-z0-9]*)*$ +
+The property checkstyle.pattern.type specifies diff --git a/docs/releasenotes.html b/docs/releasenotes.html index 344262204..bd0eab990 100644 --- a/docs/releasenotes.html +++ b/docs/releasenotes.html @@ -43,8 +43,9 @@ New features: