All Questions
Tagged with generic-programming database-design
1 question
1
vote
0
answers
136
views
Practice for modeling class - multiple container relationship
I have a class that could:
Have multiple types of containers
Have multiple types of implementations
and what I did to model so far is:
public interface ChildClass {
Container getContainer();
...