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 cqrs-eventsourcing-0.1.14.jar file.
Once you open a JAR file, all the java classes in the JAR file will be displayed.
org.uniknow.spring.cqrs.example.event
├─ org.uniknow.spring.cqrs.example.event.BaseEvent.class - [JAR]
├─ org.uniknow.spring.cqrs.example.event.GameCreatedEvent.class - [JAR]
├─ org.uniknow.spring.cqrs.example.event.GameCreatedEventHandler.class - [JAR]
├─ org.uniknow.spring.cqrs.example.event.GameTiedEvent.class - [JAR]
├─ org.uniknow.spring.cqrs.example.event.GameTiedEventHandler.class - [JAR]
├─ org.uniknow.spring.cqrs.example.event.GameWonEvent.class - [JAR]
├─ org.uniknow.spring.cqrs.example.event.GameWonEventHandler.class - [JAR]
├─ org.uniknow.spring.cqrs.example.event.MoveDecidedEvent.class - [JAR]
├─ org.uniknow.spring.cqrs.example.event.MoveDecidedEventHandler.class - [JAR]
org.uniknow.spring.cqrs.example
├─ org.uniknow.spring.cqrs.example.ApplicationService.class - [JAR]
├─ org.uniknow.spring.cqrs.example.GameQueryModel.class - [JAR]
├─ org.uniknow.spring.cqrs.example.UndoCommandHandler.class - [JAR]
org.uniknow.spring.cqrs.example.domain
├─ org.uniknow.spring.cqrs.example.domain.Game.class - [JAR]
├─ org.uniknow.spring.cqrs.example.domain.Move.class - [JAR]
├─ org.uniknow.spring.cqrs.example.domain.State.class - [JAR]
org.uniknow.spring.cqrs.example.command
├─ org.uniknow.spring.cqrs.example.command.CreateGameCommand.class - [JAR]
├─ org.uniknow.spring.cqrs.example.command.CreateGameCommandHandler.class - [JAR]
├─ org.uniknow.spring.cqrs.example.command.MakeMoveCommand.class - [JAR]
├─ org.uniknow.spring.cqrs.example.command.MakeMoveCommandHandler.class - [JAR]