Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a situation: Class B in it's own Bundle (say Bundle-B-1.0.0). Class A is in Bundle-A.1.0.0) and the relationship between A and B is:

public class B extends A {
    public B(){
      super();
    }
}

I am trying to load class B in a different ClassLoader C that has visibility of Class A', which is same as Class-A but in a different(higher) version of Bundle-A.2.0.0.

When I create an instance of Class B (from same Bundle-B.1.0.0) using ClassLoader C and via Reflection, how do I ensure that it refers/uses class A' from Bundle-A.2.0.0 (the higher versioned bundle) when it calls super()?

The requirement that I am trying to fulfill is that Class B can/should be able to refer A or A' on demand during its own instantiation. Is this possible?

share|improve this question

1 Answer

up vote 1 down vote accepted

No this is not possible. Bundle B will be wired to import from either A or A' but you cannot dynamically switch between the two.

share|improve this answer
Agreed. After a bit of trials, I tried reloading the class bytecode using the ClassLoader C (calling definClass() via Reflection) and that does the trick. – Anand Apr 25 '11 at 10:45
Then you have created B' (which extends A'). These are all different classes from the VM's point of view. – BJ Hargrave Apr 25 '11 at 11:26
That's correct too. Now, that takes me back to the original requirement - how would one correctly design a solution for this problem. – Anand Apr 26 '11 at 6:37
Anand: that would depend what problem you were originally trying to solve, and there's no information on that in your question. In general, situations where you need to dynamically choose between multiple possibilities call for the use of OSGi Services. But you should give up on modelling with inheritance. – Neil Bartlett Apr 27 '11 at 21:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.