'. '

Final interface

From APIDesign

(Difference between revisions)
Jump to: navigation, search

JaroslavTulach (Talk | contribs)
(New page: Final interface is a pattern often used in vendor library style API design. TBD == Why it does not work? == (including the ones provided by the [[...)
Next diff →

Revision as of 20:00, 8 May 2012

Final interface is a pattern often used in vendor library style API design.

TBD

Why it does not work?

(including the ones provided by the JDK itself) which worked, while one had just one such combo on in own application, but caused linkage problems when JDK continued to distribute DOM2 and there were modern parser and applications trying to use DOM3 (which contains incompatible interfaces from provider point of view).

Why it works?

All of this can be mitigated if one has good runtime support for modularity and this may be the reason why the vendor library seems to be very popular in OSGi world. The API part can request proper implementation and the OSGi container will select the right one. Especially with OSGi4.3 capabilities this seems very easy to specify and achieve.

buy