CheckStyle Audit

CheckStyle Audit

Designed for use with CheckStyle and Ant.

file line severity message
body { font:normal 80% arial,helvetica,sanserif; color: black; background-color: white; margin: 0; padding: 1em; min-width: 41em; } h1 { font-weight:bold; font-size:140%; margin: 0 0 0.7em; padding: 0.3em; text-align: center; background-color: #eee; border: 2px ridge silver; } html>body h1 { border-color: gray; } ul#navigation { font-size: 0.83em; float: left; width: 18em; margin: 0 0 1.2em; padding: 0; border: 1px dashed silver; } ul#navigation li { list-style: none; margin: 0; padding: 0.2em; } ul#navigation a { display: block; padding: 0.2em; font-weight: bold; } ul#navigation a:link { color: black; background-color: #eee; } ul#navigation a:visited { color: #666; background-color: #eee; } ul#navigation a:hover { color: red; background-color: white; } ul#navigation a:active { color: white; background-color: gray; } div#content { margin: 0 1em 1em 16em; padding: 0 1em; } * html div#content { height: 1em; /* Workaround 3-Pixel-Bug of Internet Explorers */ } div#content h2 { font-size:100%; font-weight:bold; background: #525D76; color: white; text-decoration: none; padding: 5px; margin-right: 2px; margin-left: 2px; margin-bottom: 0; } div#content p { font-size: 1em; margin: 1em 0; } table { width:100%; border-collapse:collapse; } table td, table th { border:1px solid #000; padding:3px 7px 2px 7px; } table th { font-weight:bold; background: #ccc; color: black; } table tr:nth-child(odd) td { background: #efefef; } table tr:nth-child(even) td { background: #fff; } /* * Hides all "hideable" div-containers */ function hideAll() { allElements = document.getElementsByTagName("div"); for (i = 0; i < allElements.length; i++) { if (allElements[i].className=="hideable") { allElements[i].style.display="none"; } } return; } /* * Shows one div-container and hides the other. * @param id id of the element to show */ function change(id) { hideAll(); e = document.getElementById(id); if (e.style.display=="none") { e.style.display=""; } window.scrollTo(0, 0); return; } /* * Shows only the first data row. * Used in body:onload so the user could directly see some messages. */ function openFirst() { hideAll(); for (i = 0; i < allElements.length; i++) { if (allElements[i].className=="hideable") { allElements[i].style.display=""; return; } } return; }