Aenigma / ActionMockup

Other
1 stars 0 forks source link

Helper methods should not be part of the public interface #4

Closed Aenigma closed 10 years ago

Aenigma commented 10 years ago

Helper methods are good; they increase reuse within the class and clarify intent.

However, helper methods have no use outside the class and making it part of the public interface can make changes to the class in the future.

Several of the UI components use public methods!

Aenigma commented 10 years ago

This isn't true anymore, I don't think.