Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tcarrio/hangman_swing
Preliminary Hangman Java application for CSE-337 using Java Swing
https://github.com/tcarrio/hangman_swing
Last synced: about 4 hours ago
JSON representation
Preliminary Hangman Java application for CSE-337 using Java Swing
- Host: GitHub
- URL: https://github.com/tcarrio/hangman_swing
- Owner: tcarrio
- Created: 2016-01-05T21:09:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-15T19:22:32.000Z (almost 9 years ago)
- Last Synced: 2023-03-01T08:17:08.529Z (over 1 year ago)
- Language: Java
- Size: 4.58 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hangman_swing
Hangman Java application for CSE-337 using Java SwingThe website for this project can be found under my GitHub or at its webpage
# about
I've developed a habit maintaining all of my code through Github. It allows me to continue utilizing the *git* version control software as well as practice industry standards for code reviewing / merging / etc. This assignment has not been completed yet, however the git history alone tracks back and will abstain me of any potential cheating accusations should any arise. This work has been completed utilizing the integrated Javadocs, the Oracle API for Java 7/8, and various StackOverflow articles.# features
Autonomy: Includes a list of over **500 words** of length at least 8 characters up to 16. Hangman will function without internet connectivity with a smaller list of random words to choose from.Web Connectivity: If network connection is detected, this will implement a RESTful interface to call for a random word. SetGetGo has a webpage setup that returns a single word upon a GET request that would be useful for this. Allows a specified length (len=[3-20]) as well.
# design
Programming Style: I followed a loose design scheme, aiming mostly to display my understanding of Object-Oriented Programming through the creation of classes utilizing inheritance and encapsulation. There was a potential for some interesting polymorphic classes to use as a Thread handler, however an easier alternative disposing Threads with the automatic garbage collection provided much cleaner code.