The real Java Swing project

I have been working with swings for the past 2 years, but I am still not satisfied with my work. Applications are fast enough, but development is not clean enough.

Can you recommend me a real project, book or something similar that will show me how the application works for the real world. Perhaps this is a structure, something structured, etc.

For example, I think that I can encode a "window manager", which has the entire application window in a single resource, can be cached, etc. I think that all these good ideas should already be implemented.

Thank!

+3
source share
3 answers

.

0

GUTS-GUI, Swing Application Framework, Guice .

, " Swing Application Framework" ( JSR-296), ( ) ( SAF).

GUTS-GUI ( , , ).

The GUTS-GUI also includes an “event bus,” which is generally considered a good way of communicating (in an untied manner to simplify maintenance) between components of a GUI application.

Please note that the GUTS-GUI is still under development, but it is already well developed in terms of Swing design, the best GUI development practices ...

0
source

Source: https://habr.com/ru/post/1746120/


All Articles