[Fb-contrib-commit] SF.net SVN: fb-contrib: [507] trunk/fb-contrib/htdocs/index.html
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-04-29 04:11:23
|
Revision: 507 Author: dbrosius Date: 2006-04-28 21:11:15 -0700 (Fri, 28 Apr 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=507&view=rev Log Message: ----------- doc UEC Modified Paths: -------------- trunk/fb-contrib/htdocs/index.html Modified: trunk/fb-contrib/htdocs/index.html =================================================================== --- trunk/fb-contrib/htdocs/index.html 2006-04-29 04:03:49 UTC (rev 506) +++ trunk/fb-contrib/htdocs/index.html 2006-04-29 04:11:15 UTC (rev 507) @@ -60,17 +60,20 @@ Looks for classes that declare fields that are used in a locals-only fashion, specifically private fields that are accessed first in each method with a store vs. a load. These fields can be declared as one or more locals.</li> - <li><b>[NOS] Non Owned Synchronization</b><br> + <li><b>[NOS] Non Owned Synchronization</b><br/> looks for methods that synchronize on variables that are not owned by the current class. Doing this causes confusion when two classes use the same variable for their own synchronization purposes. For cleanest separation of interests, only synchronize on private fields of the class. Note that 'this' is not owned by the current class and synchronization on 'this' should be avoided as well.</li> - <li><b>[S508C] Section 508 Compliance</b><br> + <li><b>[S508C] Section 508 Compliance</b><br/> looks for classes and methods that do not support coding styles that allow Accessibility software to make full use of the gui for people with visual impediments. Commonly known as 'Section 508 Compliance' this detector finds a varied list of issues that hamper screen readers, - and make color/size adjustments difficult.</b><br> + and make color/size adjustments difficult.</li> + <li><b>[UEC] Use Enum Collections</b><br/> + looks for uses of sets or maps where the key is an enum. In these cases, it is + more efficient to use EnumSet or EnumMap. It is a jdk1.5 only detector.</li> </ul> </div> <hr/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |