Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
CSCI 1302
CSCI 1302

Front Matter

  • Copyright
  • Dedications
  • Acknowledgments

Tools:

  • 1. Unix Environment
    • 1.1. Operating Systems
    • 1.2. Unix
    • 1.3. Required Setup
    • 1.4. The Prompt
    • 1.5. Terminals
    • 1.6. Logging In
    • 1.7. Summary of Commands
  • 2. Unix Commands
    • 2.1. Navigating the File System
    • 2.2. Time-saving Tips
    • 2.3. Getting Help
    • 2.4. Inspecting Files
    • 2.5. New Directories
    • 2.6. Moving, Copying, and Deleting
    • 2.7. Additional Practice
  • 3. The Emacs Text Editor
    • 3.1. Introduction
    • 3.2. Control and Meta
    • 3.3. Open / Create File
    • 3.4. Basic Commands
    • 3.5. Customize Emacs
    • 3.6. Built-in Emacs Tutorial
  • 4. Javadoc and API Documentation
    • 4.1. Introduction
    • 4.2. Getting Started
    • 4.3. Generating the API Documentation Website
    • 4.4. Hosting the API Documentation Website
    • 4.5. Troubleshooting Tips
    • 4.6. Writing Javadoc Comments
    • 4.7. FAQ
  • 5. UML
    • 5.1. Introduction to UML
    • 5.2. UML Class Diagrams
    • 5.3. UML Software and Tools
  • 6. Interpreter Scripts
    • 6.1. What is an Interpreter Script?
    • 6.2. Shell Scripts
  • 7. Maven
    • 7.1. Maven Introduction
    • 7.2. Creating a Project
    • 7.3. Updating the POM
    • 7.4. Using Maven

Java:

  • 1. Reference Variables
    • 1.1. Introduction
    • 1.2. Variables
    • 1.3. Reference Type Examples
    • 1.4. Reference Types and Assignment Values
    • 1.5. Practice Exercises
  • 2. Packages
    • 2.1. Introduction
    • 2.2. Default Package
    • 2.3. Named Package
    • 2.4. Code Dependencies
    • 2.5. Further Important Notes
    • 2.6. Additional Practice Exercises
  • 3. Exceptions
    • 3.1. Warm Up
    • 3.2. Introduction
    • 3.3. Exception Messages
    • 3.4. Avoiding Exceptions
    • 3.5. Handling Exceptions (Try-Catch)
    • 3.6. Regarding Scope
    • 3.7. Checked vs. Unchecked Exceptions
    • 3.8. Multiple Catch Blocks
    • 3.9. Explicitly Throwing Exceptions & Exception Propagation
    • 3.10. Additional Practice Exercises
  • 4. Command-Line Arguments
    • 4.1. Introduction
    • 4.2. String[] args
    • 4.3. Command-Line Arguments Tutorial
  • 5. Interfaces
    • 5.1. Introduction
    • 5.2. Interface Example
    • 5.3. Setting up for Activity
    • 5.4. Declaring an Interface
    • 5.5. Implementing an Interface
    • 5.6. Using an Interface
    • 5.7. Common Functionality among Disparate Classes
    • 5.8. Additional Practice
  • 6. Varargs
    • 6.1. Getting Started with Varargs
    • 6.2. The printf Method
  • 7. Inheritance
    • 7.1. Introduction
    • 7.2. Setting up the Environment
    • 7.3. Person Example (Refactoring Existing Code)
    • 7.4. What is Inherited?
    • 7.5. Animal Example
    • 7.6. Method Overrides
    • 7.7. Abstract Classes
    • 7.8. Inheritance and Polymorphism
    • 7.9. Additional Practice
  • 8. ADTs and Lists
    • 8.1. Introduction to Linked Lists
    • 8.2. The Node Class
    • 8.3. Introduction to ADTs
    • 8.4. The List Interface (ADT)
    • 8.5. List ADT - Examples with Both Implementations
    • 8.6. Linked List Get Operation
    • 8.7. Linked List Add Operation
    • 8.8. Conclusion
    • 8.9. Additional Practice Exercises
  • 9. Visibility
    • 9.1. Introduction
    • 9.2. Public and Private Visibility
    • 9.3. Package Private Visibility
    • 9.4. Protected Visibility
    • 9.5. Summary of Visibilities
    • 9.6. Additional Practice Exercises
  • 10. Generics
    • 10.1. Introduction to Generics
    • 10.2. Wrapper Classes
    • 10.3. Setting up the Environment
    • 10.4. Creating the Shipping Container Class
    • 10.5. Introduction - Generic Methods
    • 10.6. Generic Methods
    • 10.7. Generic Methods - Video Example
  • 11. Lambda Expressions
    • 11.1. Introduction
    • 11.2. Functional Interfaces
    • 11.3. Motivating Example
    • 11.4. Another Example
    • 11.5. How to Create Lambda Expressions
    • 11.6. More Examples
    • 11.7. Functional Interfaces as Parameters
  • 12. JavaFX
    • 12.1. Getting Started
    • 12.2. Compiling JavaFX Applications
    • 12.3. High-Level Walkthrough
    • 12.4. Mid-Level Walkthrough
    • 12.5. Events and Event Handlers
    • 12.6. JavaFX 17 Bookmarks and Notes
  • 13. JavaFX Custom Components
    • 13.1. Getting Started
    • 13.2. Creating a Custom Component
  • 14. Threads
    • 14.1. Quick Introduction
    • 14.2. Thread Terminology
    • 14.3. The Thread Class
    • 14.4. Daemon Threads
    • 14.5. JavaFX Application Thread
  • 15. JSON
    • 15.1. Introduction to JSON
    • 15.2. JSON Objects
    • 15.3. Serializing to JSON in Java
    • 15.4. Parsing JSON in Java
    • 15.5. Adding Gson to a Project
  • 16. HTTP
    • 16.1. Introduction to HTTP
    • 16.2. Java’s java.net.http Library
    • 16.3. Complete Examples
  • 17. Recursion
    • 17.1. Introduction
    • 17.2. Infinite Recursion
    • 17.3. Problems and Sub-problems
    • 17.4. Recursive Countdown
    • 17.5. Recursive Count Up
    • 17.6. Recursive Factorial
  • 18. Algorithm Analysis
    • 18.1. Introduction
    • 18.2. Algorithm Analysis Steps
    • 18.3. Example Problems
    • 18.4. Space Complexity Analysis

Assignments and Practice:

  • Lecture Materials
    • 1. Reference Variables Lesson
    • 2. Unix Commands Lesson
    • 3. Packages Lesson
    • 4. Javadoc Lesson
    • 5. Exceptions Lesson
    • 6. Interfaces Lesson
    • 7. Inheritance Lesson
    • 8. ADTs and Lists - Lesson Plan
  • Projects
    • 1. C4 Alpha v2026.sp
    • 2. String List v2026.sp

Appendices:

  • Glossary
  • References
Back to top

Copyright¶

© 2024-present Michael E. Cotterell, Bradley J. Barnes, and the University of Georgia.

License¶

This work is licensed under CC BY-NC-SA 4.0. To view copy of this license, visit this link or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.

Notices¶

University of Georgia and University System of Georgia

The content and opinions expressed in this work do not necessarily reflect the views of nor are they endorsed by the University of Georgia or the University System of Georgia.

Regarding Code Visualizations

The authors use PlantUML to generate UML diagrams. PlantUML is released under a GPL license, but diagrams generated by the execution of PlantUML are not considered to be covered by that same license. As such, diagrams included herein that are generated by the execution of PlantUML are subject to the same license as this book (CC BY-NC-SA 4.0).

PlatUML License
=======================================================================
PlantUML : a free UML diagram generator
========================================================================

(C) Copyright 2009-2025, Arnaud Roques

Project Info:  http://plantuml.com

If you like this project or if you find it useful, you can support us at:

http://plantuml.com/patreon (only 1$ per month!)
http://plantuml.com/paypal

PlantUML is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

PlantUML distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.

You should have received a copy of the GNU General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
USA.

PlantUML can occasionally display sponsored or advertising messages. Those
messages are usually generated on welcome or error images and never on
functional diagrams.
 
Images (whatever their format : PNG, SVG, EPS...) generated by running PlantUML
are owned by the author of their corresponding sources code (that is, their
textual description in PlantUML language). Those images are not covered by
the GPL license.

The generated images can then be used without any reference to the GPL license.
It is not even necessary to stipulate that they have been generated with PlantUML,
although this will be appreciated by the PlantUML team.

There is an exception : if the textual description in PlantUML language is also covered
by a license (like the GPL), then the generated images are logically covered
by the very same license.

Icons provided by OpenIconic :  https://useiconic.com/open
Archimate sprites provided by Archi :  http://www.archimatetool.com
ASCIIMathML (c) Peter Jipsen http://www.chapman.edu/~jipsen
ASCIIMathML (c) David Lippman http://www.pierce.ctc.edu/dlippman

The authors of this book use a forked version of Python Tutor (i.e., “OnlinePythonTutor”) that was released by Philip J. Guo under a MIT license in order to generate memory map diagrams from execution traces of Java programs. The authors use a custom execution trace generator that was developed as part of the grant work for the book’s development in order to streamline the generation and integraion of these memory map diagrams and support newer versions of the Java programming language. Diagrams included herein that are generated by the execution of the author’s custom execution trace generator and their fork of “OnlinePythonTutor” are subject to the same license as this book (CC BY-NC-SA 4.0).

OnlinePythonTutor License
Original work Copyright (C) Philip J. Guo (philip@pgbovine.net)
Modified work Copyright (C) 2019 Pathrise (dev@pathrise.com)

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Regarding Terminal Session Recordings

The authors of this book use asciinema-player to display recordings of terminal sessions in various places throughout the HTML (website) releases of the book. The source code for asciinema-player is available here and is licensed under the Apache License 2.0. Per that license, this book is not considered a “derivative work” of asciinema-player because it merely merely links (or binds by name) to the interfaces provided by asciinema-player. At the time of this writing, the source code for asciinema-player is not, itself, directly ditributed with either the book’s own source code (maintained by the authors) or its HTML (website) release; instead the source code for asciinema-player is fetched, as needed, via a Content Delivery Network (CDN) so that the HTML (website) release of the book always uses the latest patch release of asciinema-player on the pages where terminal session recordings are displayed. One important side-effect of using a CDN is that terminal session recordings are likely not likely to render when viewing the book without Internet access.

asciinema-player License
                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "{}"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright 2011-2021 Marcin Kulik

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

Regarding Sphinx

The authors use Sphinx to generate the files for the HTML (website) releases of the book from reStructuredText files. The source code for Sphinx is available here and is licensed under a BSD 2-Clause “Simplified” License. At the time of this writing, the source code for Sphinx is not, itself, directly distributed with either the book’s own source code (maintained by the authors) or its HTML (website) release; however, some portions of that source code may appear in the file for HTML (website) release of the book as a by-product of using Sphinx to generate those files.

Sphinx License
License for Sphinx
==================

Unless otherwise indicated, all code in the Sphinx project is licenced under the
two clause BSD licence below.

Copyright (c) 2007-2025 by the Sphinx team (see AUTHORS file).
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
  notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
  notice, this list of conditions and the following disclaimer in the
  documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Custom Sphinx Extensions

The authors make use of several self-authored Sphinx extensions to facilirate different parts of the book when authoring its content in reStructuredText. It is the authors’ intention to eventually release some, if not all, of these custom extensions publicly for authors to use.

Regarding Furo

The authors use a customized version of Furo, an open-source theme for HTML (website) sites generated by Sphinx authored and maintained by Pradyun Gedam, to facilitate the baseline for visual aspects of the book’s layout, typogrophy, and several other visual and/or aesthetics elements. The source code for Furo is available here and is licensed under a MIT License.

Sphinx License
Copyright (c) 2020 Pradyun Gedam <mail@pradyunsg.me>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.

Regarding Trademarks

All trademarks used herein are the property of their respective owners. The use of any trademark in this text does not vest in the author or publisher any trademark ownership rights in such trademarks, nor does the use of such trademarks imply any affiliation with or endorsement of this book by such owners.

Regarding Errors

The authors have made every effort to ensure that the information in this revision of the book was correct at the time it was released. They do not assume and hereby disclaim any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from negligence, accident, or any other cause, or from any usage of the information herein.

Next
Dedications
Previous
Home
Copyright © 2024-present Michael E. Cotterell, Bradley J. Barnes, and the University of Georgia.
Made with Sphinx and @pradyunsg's Furo
The content and opinions expressed in this work do not necessarily reflect the views of nor are they endorsed by the University of Georgia or the University System of Georgia.
Submit Feedback
On this page
  • Copyright
    • License
    • Notices