On Monday 21 August 2006 21:33, Honza T_ wrote: > Its possible to inherit methods from xpcom component ?
The IDL file defines only an interface. Therefore, extending some super interface does not "magically" implement the inherited methods of your component. Components are classes that implement one or more IDL interfaces. That is, more components can implement the same interface. Depending on the implementation language of your component and visibility restrictions you could inherit from the implementation of the parent component. So you could write a C++ code that extends the class of parent C++ component, or similarly for Javascript. But it will not work across language boundaries. best regards, Michal _______________________________________________ dev-tech-xpcom mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-xpcom
