Help with custom component creation

Yeah, along with some more rules. It’s referred to as the JavaBean naming convention - you may want to read about that a bit.

Naming a boolean variable ‘isClicked’ is not best practice and would result in you needing setters/getters named something like ‘setIsClicked()’ and ‘isIsClicked()’ - I think…