Netbeans is giving me a ton of warnings about
Overridable method all in constructor
and I have read up on why overridable method calls in constructors are not recommended. But the methods I have in the constructor at the moment are purely getters for the classes members.
So in this case, when the override-able methods are purely getters is it alright to have them in the constructor? As I see it, I don't have much of an option, I need to initialize these variables in the constructor. I could create a private method like CustomInitComponents, put my variable setting code in that and call it from the constructor... would that be considered better practice?