-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (126 loc) · 3.86 KB
/
index.html
File metadata and controls
126 lines (126 loc) · 3.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Documentation</title>
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background: #FFF;
margin: 0;
padding: 0;
color: #000;
}
ul, ol, dl {
padding: 0;
margin: 0;
}
h1, h2, h3, h4, p {
margin-top: 0;
padding-right: 15px;
padding-left: 15px;
}
a:link {
color:#404858;
text-decoration: underline;
}
a:visited {
color: #50586A;
text-decoration: underline;
}
a:hover, a:active, a:focus {
text-decoration: none;
}
.container {
width: 80%;
max-width: 1260px;
min-width: 780px;
background: #FFF;
margin: 0 auto;
}
.header {
background: #9FADC4;
}
.sidebar1 {
float: left;
width: 18%;
background: #FFF;
padding-bottom: 0px;
}
.content {
padding: 10px 0;
width: 80%;
float: left;
}
.content ul, .content ol {
padding: 0 15px 15px 40px;
}
ul.nav {
list-style: none;
border-top: 1px solid #666;
margin-bottom: 15px;
}
ul.nav li {
border-bottom: 1px solid #666;
}
ul.nav a, ul.nav a:visited {
padding: 5px 5px 5px 15px;
display: block;
text-decoration: none;
background: #B8C8E8;
color: #000;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
background: #6F7D94;
color: #FFF;
}
.footer {
padding: 10px 0;
background: #AFBDD4;
position: relative;
clear: both;
}
-->
</style>
</head>
<body>
<div class="container">
<div class="header">
<h2>Documentation: API, Test Results, Analyses</h2>
</div>
<div class="sidebar1">
<div>Tool References</div>
<ul class="nav">
<li><a href="https://ant.apache.org">Ant</a></li>
<li><a href="https://checkstyle.sourceforge.io">Checkstyle</a></li>
<li><a href="https://www.jacoco.org/jacoco/trunk/doc/">JaCoCo</a></li>
<li><a href="https://docs.oracle.com/en/java/javase/26/docs/specs/man/javadoc.html">Javadoc</a></li>
<li><a href="https://junit.org">JUnit</a></li>
<li><a href="https://pmd.github.io">PMD & CPD</a></li>
<li><a href="https://spotbugs.github.io">SpotBugs</a></li>
</ul>
</div>
<div class="content">
<h2>Code Documentation & Reports</h2>
<h3>API</h3>
<p>Javadoc: <a href="doc/index.html" title="javadoc entry point">doc/index.html</a></p>
<h3>Testing</h3>
<h4>Unit Tests</h4>
<p>JUnit: <a href="results/junit/index.html" title="junit entry point">results/junit/index.html</a></p>
<h4>Test Coverage</h4>
<p>JaCoCo: <a href="results/jacoco/index.html" title="jacoco report">results/jacoco/index.html</a></p>
<h3>Static Analyses</h3>
<p>Checkstyle: <a href="results/checkstyle_report.html" title="checkstyle report">results/checkstyle_report.html</a></p>
<p>PMD: <a href="results/pmd_report.html" title="pmd report">results/pmd_report.html</a></p>
<p>CPD: <a href="results/cpd.txt" title="cpd report">results/cpd.txt</a></p>
<p>SpotBugs: <a href="results/spotbugs.html" title="spotbugs report">results/spotbugs.html</a></p>
<p>JaCoCo (Cxty): <a href="results/jacoco/index.html" title="jacoco report">results/jacoco/index.html</a></p>
<!-- end .content --></div>
<div class="footer">
©2011,2026 Dr. Jody Paul
</div>
</div>
</body>
</html>