First upload to showcase some simple project designed for work.
Would love some constructive positive and negitive feedback.
#Simple Password Generator
8 messages · Page 1 of 1 (latest)
static {
random = new SecureRandom();
password = "";
}
Can define at declaration itself
Password can be a StringBuilder ideally
Separate logic and UI functionality
Add documentation in the application if possible
Same for Result
setBackground(Color.WHITE);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 362, 126);
In my opinion, using the super prefix will make it easier to read
Haven't played around with Group Layouts, will have to see if that can be cleaned