View Java Class Source Code in JAR file
- Download JD-GUI to open JAR file and explore Java source code file (.class .java)
- Click menu "File → Open File..." or just drag-and-drop the JAR file in the JD-GUI window example-number-guessing-game-model-0.16.6.jar file.
Once you open a JAR file, all the java classes in the JAR file will be displayed.
org.occurrent.example.domain.numberguessinggame.model
├─ org.occurrent.example.domain.numberguessinggame.model.GameAlreadyEnded.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.GameNotStarted.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.Guess.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.MaxNumberOfGuesses.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.NumberGuessingGame.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.SecretNumberToGuess.class - [JAR]
org.occurrent.example.domain.numberguessinggame.model.domainevents
├─ org.occurrent.example.domain.numberguessinggame.model.domainevents.GameEvent.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.domainevents.GuessingAttemptsExhausted.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.domainevents.NumberGuessingGameEnded.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.domainevents.NumberGuessingGameWasStarted.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.domainevents.PlayerGuessedANumberThatWasTooBig.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.domainevents.PlayerGuessedANumberThatWasTooSmall.class - [JAR]
├─ org.occurrent.example.domain.numberguessinggame.model.domainevents.PlayerGuessedTheRightNumber.class - [JAR]