Pattern: Missing setter to change property
Issue: -
DO use a setter for operations that conceptually change a property.
Example of incorrect code:
rectangle.setWidth(3);
button.setVisible(false);
Example of correct code:
rectangle.width = 3;
button.visible = false;