You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of now the system has various degrees of coupling. Controllers access the model by using an internal reference, which is injected from the main class. This should be replaced with a more generic and flexible system, such as the pub/sub system already in place.
Additions to consider:
More use of pub/sub, less direct dependency injection
Universal search widget used multiple places
Refresh logic for various controllers (refresh in superclass?)
Method for wiring buttons to actions in view element superclass
Tweak "TopBarController.setMarketIntegration()" to act more universal
Show playerstatus in top bar
Change color of top bar
Change graph, buttons and text in financial summary
Refactor unit testing, write new unit tests for various classes
Make sure every class has appropriate JavaDoc
Package-info.java files in every package
The text was updated successfully, but these errors were encountered:
As of now the system has various degrees of coupling. Controllers access the model by using an internal reference, which is injected from the main class. This should be replaced with a more generic and flexible system, such as the pub/sub system already in place.
Additions to consider:
The text was updated successfully, but these errors were encountered: