Tagged Questions
The cop tag has no wiki summary.
5
votes
4answers
1k views
Anybody using Qi4J
I was reading an InfoQ article on Composite Oriented Programming earlier on:
http://www.infoq.com/articles/Composite-Programming-Qi4j
I was interested in finding out whether anybody is currently ...
5
votes
3answers
2k views
Composite Oriented Programming (COP), .NET 4.0, MEF, and the Oslo Repository
There seems to have been some interest over the past year around COP within the .NET community (ala Qi4j). A few folks have rolled there own COP frameworks (see links below) and it would appear .NET ...
3
votes
5answers
654 views
Make object dynamically implement an interface in code
I want to make this test pass - anyone got an idea how to do that?
public class Something
{
public string Name {get; set}
}
public interface IWithId
{
public Guid Id {get; set}
}
public ...
3
votes
2answers
1k views
What is the difference between an Abstract Class and a Mixin?
I just found an article on a framework in Java that apparently allows it to support Mixins and something called Composite Oriented Programming (which for all I know might even be the same thing...) ...
0
votes
1answer
40 views
Serializing Composed Objects
I see Composite Oriented Programming and DCI as interesting techniques
to use within a rest framework, but have run into an issue.
Is it possible to serialize a mixin object and get all it's
...