Skip to main content
7 votes
Accepted

Cookie Clicker in Java

Thanks for sharing your code. It is a really good for the first attempt. Nevertheless there is something to mention... Naming Finding good names is the hardest part in programming. So always take ...
Timothy Truckle's user avatar
3 votes
Accepted

HsbColor: a class representing a HSB/HSV color

I think not having the Color class as a parent or a delegate was the correct choice. It would just have made the class overly complex without providing much ...
TorbenPutkonen's user avatar
2 votes

Bank Account GUI

I do not have launched your app so I cannot (I do not want to) tell anything about the UI/UX. However, about the code and your two questions: Whenever I make a GUI, its always very repetitive to add ...
gervais.b's user avatar
  • 2,147
2 votes

Generate and Control JMenu Radio Buttons Using An Enum

dependency injection with the feedback from your comments i would provide those <T extends Enum<T>> that you want to use already in your constructor. ...
Martin Frank's user avatar
  • 3,033
1 vote

Bank Account GUI

methods you have a lot of redundant code - you could use methods to reduce code & increase readability. for that purpose it won't hurt to use static methods from an utility class example 1 (two ...
Martin Frank's user avatar
  • 3,033
1 vote

Cookie Clicker in Java

I made some edits to your code for fun! Check this link: https://drive.google.com/file/d/1BBblZPIUScPtr5kTHi0YAjA3phoeR2Gj/view?usp=sharing The above link contains the whole project folder for the ...
HelpMePlease's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible