Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prmr/designbook
Companion repository for the book "Introduction to Software Design with Java"
https://github.com/prmr/designbook
Last synced: 1 day ago
JSON representation
Companion repository for the book "Introduction to Software Design with Java"
- Host: GitHub
- URL: https://github.com/prmr/designbook
- Owner: prmr
- Created: 2019-03-04T16:35:26.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-23T14:45:17.000Z (10 days ago)
- Last Synced: 2024-12-25T10:05:33.536Z (8 days ago)
- Language: Java
- Size: 863 KB
- Stars: 128
- Watchers: 9
- Forks: 153
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction to Software Design with Java
Companion web site for the book ["Introduction to Software Design with Java"](https://www.springer.com/gp/book/9783030240936) by Martin P. Robillard, Springer 2019 and its [second edition](https://link.springer.com/book/10.1007/978-3-030-97899-0), 2022.
**NEW!** You can now view all the chapter code samples with additional _on-demand documentation_ accessible directly from the code. Check out the [CodeSample.info website](https://codesample.info).
## Errata
Check the Errata for clarifications and corrections. If you spot a problem that is not listed, please check the [issues](https://github.com/prmr/DesignBook/issues) and open a new one if the problem has not yet been reported.
* [Errata for the First Edition](errata-e1.md);
* [Errata for the Second Edition](errata-e2.md);## Source Code
There are three source folders on this site:
* `chapter-code` The complete and commented version of the code samples for the first edition of the book;
* `chapter-code-2ndEdition` The complete and commented version of the code samples for the second edition of the book.
* `solutions-code` The complete version of the code file for selected exercises. The code files are referenced from the appropriate solutions pages.Although you can browse the code on GitHub, the recommended way to peruse the code samples is to [clone the repository](https://www.git-scm.com/docs/git-clone). The repository includes the configurations files necessary to build the code automatically in [Eclipse](https://www.eclipse.org/). However, because some code relies on the JavaFX library, you also need to:
1. Download the [JavaFX SDK](https://gluonhq.com/products/javafx/) and unzip it to a desired location;
2. Create a new User Library under `Eclipse -> Window -> Preferences -> Java -> Build Path -> User Libraries -> New`
3. Name it `JavaFX` and include the jars under the `lib` folder from your unzipped JavaFX download location.## Practice Exercises
The exercises are meant to be completed in order, after studying each chapter. Exercises tagged with a star (:star:) are challenging and those tagged with a magnifying glass (:mag:) are based on the exploration of the sample applications.
|Chapter|Exercises|Solutions|
|---|---|---|
|1|[Exercises](exercises/e-chapter1.md)|[Solutions](solutions/s-chapter1.md)
|2|[Exercises](exercises/e-chapter2.md)|[Solutions](solutions/s-chapter2.md)
|3|[Exercises](exercises/e-chapter3.md)|[Solutions](solutions/s-chapter3.md)
|4|[Exercises](exercises/e-chapter4.md)|[Solutions](solutions/s-chapter4.md)
|5|[Exercises](exercises/e-chapter5.md)|[Solutions](solutions/s-chapter5.md)
|6|[Exercises](exercises/e-chapter6.md)|[Solutions](solutions/s-chapter6.md)
|7|[Exercises](exercises/e-chapter7.md)|[Solutions](solutions/s-chapter7.md)
|8|[Exercises](exercises/e-chapter8.md)|[Solutions](solutions/s-chapter8.md)
|9|[Exercises](exercises/e-chapter9.md)|[Solutions](solutions/s-chapter9.md)## Acknowledgements
Thanks to [Samuel Beaubien](https://github.com/samuelbeaubien), [Hüdanur Çelik](https://github.com/hudanurk), [Neil Ernst](https://github.com/neilernst), [Benjamin Lee](https://github.com/UnHumbleBen), [Christian Joudrey](https://github.com/cjoudrey), and [joshuamanascu](https://github.com/joshuamanascu) for flagging errors via this site.
A special thanks to the software design educators who have adopted the book to support their teaching.
*To be included in the list, please fill in [this form](https://forms.office.com/r/jjagth5cDk)*.|Name|Institution|Course|
|---|---|---|
|[Jin Guo](http://jguo-web.com)|McGill University|Software Design|
|[Neil Ernst](http://neilernst.net)|University of Victoria|Object-Oriented Design|
|[Kostadin Damevski](http://damevski.github.io)|Virginia Commonwealth University|Software Engineering: Design and Implementation|
|[Mattia Monga](https://homes.di.unimi.it/monga)|Università Degli Studi Di Milano|Computer Programming II|
|[Carlo Nicola Maria Bellettini](https://www.unimi.it/it/ugov/person/carlo-bellettini)|Università Degli Studi Di Milano|Computer Programming II|
|[Alberto Bacchelli](https://www.ifi.uzh.ch/en/zest/team/bacchelli.html)|University of Zurich|Software Construction|
|[Gerardo Canfora](http://www.gerardocanfora.net/)|University of Sannio|Software Engineering|## License
Unless otherwise noted, the content of this repository is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
Copyright Martin P. Robillard 2019-2022