Lets say you have many class Sections which each contain a list of class Items
I want to create the functionality to allow for the selection of multiple things. I want to have to ability to select multiple things at once. If an Item is selected, then its parent Section is also focused/selected.
And, to take it a step further, what if some extraneous classes need to modify the properties of selected sections/items. How would you design that sort of functionality without violating OOP principles of encapsulation. Would you create a SelectionHandler or something?
Not looking for actual implementations, mostly just the abstract design/structure you would use.