Tagged Questions
16
votes
5answers
21k views
What causes java.lang.IncompatibleClassChangeError?
For some reason our java library that we package as a jar is throwing all of these java.lang.IncompatibleClassChangeError when we try to invoke methods from it. It seems to be seemingly random. What ...
10
votes
8answers
1k views
Genericized commons collection
I'm astonished that the Apache Commons Collections project still hasn't got around to making their library generics-aware. I really like the features provided by this library, but the lack of support ...
8
votes
4answers
518 views
How to identify a missing method (Binary Compatibility) in a JAR without running it?
I want to verify binary compatibility between 2 JARs.
Following the suggestions in this answer I used jboss tattletale but it can find only missing classes.
How can I find if there are missing ...
7
votes
7answers
1k views
Is JDK “upward” or “backward” compatible?
Backward binary compatibility (or downward compatibility) - an ability of clients built with an old version of library API to run on a new one (wiki).
Upward binary compatibility (or forward ...
5
votes
3answers
299 views
Retrofitting void methods to return its argument to facilitate fluency: breaking change?
"API design is like sex: make one mistake and support it for the rest of your life" (Josh Bloch on twitter)
There are many design mistakes in the Java library. Stack extends Vector (discussion), ...
5
votes
3answers
242 views
Java - binary compatibility of abstract class & subclasses
In Java, I define an abstract class with both concrete and abstract methods in it, and it has to be subclassed independently by third-party developers. Just to be sure: are there any changes I could ...
4
votes
2answers
200 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 ...
3
votes
3answers
176 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:
...
2
votes
3answers
153 views
Java binary compatibility - RFC on proposed solution to covariant return type using invokevirtual semantics
I'm trying to evolve an API. As part of this evolution I need to change the return type of a method to a subclass (specialize) in order for advanced clients to be able to access the new functionality.
...
2
votes
3answers
89 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 ...
2
votes
4answers
190 views
Cleaning up code breaks binary compatibility
I'm working on a project which is being used by a number of people I don't know. We've done a fairly good job of bringing down the CheckStyle warnings and the thing is about a low as its going to get ...
1
vote
1answer
35 views
About java Runtime self-written public API compatibility
I just encounter a real problem about changed API. And i want to know more about this topic.
Using the following example as a demo.
There are 4 simple classes, Child class extends Parent. PubAPI is ...
1
vote
2answers
108 views
How can I design my Java / C# library so it stays binary compatible in case of future changes?
Task: I am designing a library which will be used by developers.
Objective: I need to make sure that changes in future versions will not impact existing developers.
Example:
Situation during first ...