1
vote
3answers
56 views
Does removing an interface break code calling methods on the object?
I need to do some refactoring in Java, and I need to maintain some degree of binary compatibility. In this case I want to remove some legacy interfaces, that are not used anywhere anymore and which …
6
votes
4answers
153 views
How to design a C++ API for binary compatible extensibility
I am designing an API for a C++ library which will be distributed in a dll / shared object. The library contains polymorhic classes with virtual functions. I am concerned that if I expose these …
0
votes
3answers
122 views
VB6 binary compatibility - adding new Events
In a VB6 ActiveX exe project, is there any way to preserve the GUID for the events dispinterface if and when new events are added?
Obviously changing existing events breaks compatibility. Adding a …
2
votes
2answers
85 views
Refactored methods and binary compatibility in Java
When refactoring methods it is easy to introduce binary incompabilities (with previous versions of the code) in Java.
Consider changing a method to widen the type of its parameter to a parent …
8
votes
1answer
195 views
What would I lose by abandoning the standard EventHandler pattern in .NET?
There's a standard pattern for events in .NET - they use a delegate type that takes a plain object called sender and then the actual "payload" in a second parameter, which should be derived from …
3
votes
3answers
103 views
Changing a constructor param type breaks class in another jar
I have the following class in a common jar:
public class Common
{
public Common(List list)
{
...
}
}
I then change the constructor parameter from a List to a Collection as follows:
…
