-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathoverview.html
More file actions
23 lines (17 loc) · 800 Bytes
/
overview.html
File metadata and controls
23 lines (17 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<body>
If there is one thing that I feel very strongly about, it is that
software must be documented. I also feel that it is very important
that student be exposed to sample code when learning a programming
language. To those ends, I have written a number of sample Java
classes that demonstrate the concepts and APIs that we discuss in
class. These classes are documented using Java documentation comments
and HTML pages have been generated from them using <a
href="http://www.oracle.com/technetwork/java/javase/documentation/javadoc-137458.html">Javadoc</a>.
<ul>
<li>Java <a href="https://docs.oracle.com/javase/10/docs/api/overview-summary.html">API</a>
documentation</li>
<li><a href="http://www.cs.pdx.edu/~whitlock">The Joy of Coding</a> Homepage</li>
</ul>
</body>
</html>