Übung – Multichat
Go to file
schrom01 af94f7ae00 added Description of Solution in Readme.md 2022-04-16 21:48:34 +02:00
client fixed Problem in processData in ConnectionHandler.java 2022-04-16 20:02:04 +02:00
gradle/wrapper added Handout 2022-04-02 14:15:01 +02:00
protocol fixed Problem in processData in ConnectionHandler.java 2022-04-16 20:02:04 +02:00
server javadoc 2022-04-16 19:40:51 +02:00
.gitignore Created Class Diagrams 2022-04-08 09:15:14 +02:00
Klassendiagramm.svg klassendiagramm 2022-04-16 19:53:15 +02:00
README.md added Description of Solution in Readme.md 2022-04-16 21:48:34 +02:00
gradle.properties added Handout 2022-04-02 14:15:01 +02:00
gradlew added Handout 2022-04-02 14:15:01 +02:00
gradlew.bat added Handout 2022-04-02 14:15:01 +02:00
settings.gradle added Handout 2022-04-02 14:15:01 +02:00

README.md

Übung Multichat

Uebung-hk1-Schrom01-Fassband-Brandleo

#most important Problems

Our 5 most important functional Errors

Our 5 most important structural problems

Description of our solution

###Classdiagram of original handout

###Classdiagram of our new structure

Structure of Client:

The instances of ClientConnectionHandler and ClientMessageList are not created in the ChatWindowControllerClass anymore. It's created in the ClientUI Class and the ChatWindowController Class has access to them. This makes it possible for a client to have multiple windows open or close all windows without losing the message list or closing the connection. The ClientConnectionHandlder does't need a ChatWindowController Object now. Received Messages are added directly into the message list. This makes it possible to receive and store new messages without having a Window open. The ChatWindowController adds listeners in the clientConnectionHandler and in ClientMessageList to refresh the view if there are new Messages or if there are any changes in the connection handler.

Structure of protocol:

####Datatype: A new Class Message represents a Message which can be sent from a Client to the Server from the Server to a Client and can also directly be stored in ClientMessageList. This makes it much easier to process the received data and to send a message because no String parsing and String building is needed. ####Class ConnectionHandler A new Abstract Class ConnectionHandler contains Code which is used in ClientConnectionHandler and ServerConnectionHandler. For Example Method send Data. This removes a lot of duplicated methods and data fields.

Ideas to extend the application:

  • It would be easyer to use for a User if it was possible to open a separate Window for a private Chat with a specific user.
  • Users could be divided into groups, and it would be nice if a group name could be used as receiver.
  • registration and login with username and password and store credentials in a Database in Server.