Hello,
I have a class diagram ("Customer") with some private and public attributes as well as some operations. Now I want to model a dialog (GUI) for editing this customer. The window represents the class Customer and some drop downs and checkboxes the attributes. The operations ("save", "refresh") are represented by buttons.
Design Question: Do I design my GUI dialog only for editing public attributes or also for editing private attributes?
(This is a pure object-oriented design question, there is no implementation.)