Tagged Questions
1
vote
3answers
77 views
Is there a way to use the Delegation design pattern without losing substitutability in Java?
This question refers to the Delegation design pattern found here.
I have a number of interfaces for my game engine representing various entities:
Player
Vehicle
Mesh
etc.
and each one of these ...
9
votes
2answers
691 views
Liskov Substition and Composition
Let say I have a class like this:
public sealed class Foo
{
public void Bar
{
// Do Bar Stuff
}
}
And I want to extend it to add something beyond what an extension method could ...