I've got this Setting.class
and it has a few variables.
private int timeRemember, timeConcentration;
private boolean hearts, spades, diamonds, clubs;
I know that I should create getters and setters for them but it will take like 50 lines of code. If I had more variables, let's say 40, it would be like 200 or so.
My question is - everyone does that? Or there's something I don't know?