Difference between revisions of "Documentation/DevGuide/WritingUNO/Storing the Service Manager for Further Use"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (Robot: Changing Category:Documentation/Developers Guide/Writing UNO Components)
Line 5: Line 5:
 
|NextPage=Documentation/DevGuide/WritingUNO/Create Instance with Arguments
 
|NextPage=Documentation/DevGuide/WritingUNO/Create Instance with Arguments
 
}}
 
}}
 +
[[zh:Zh/Documentation/DevGuide/WritingUNO/Storing the Service Manager for Further Use]]
 
{{DISPLAYTITLE:Storing the Service Manager for Further Use}}
 
{{DISPLAYTITLE:Storing the Service Manager for Further Use}}
 
A component usually runs in the office process. There is no need to create an interprocess channel explicitly. A component does not have to create a service manager, because it is provided to the single factory of an implementation by the service manager during a call to <code>createInstance()</code> or <code>createInstanceWithContext()</code>. The single factory receives an <code>XComponentContext</code> or an <code>XMultiServiceFactory</code>, and passes it to the corresponding constructor of the service implementation. From the component context, the implementation gets the service manager using <code>getServiceManager()</code> at the <idl>com.sun.star.uno.XComponentContext</idl> interface.
 
A component usually runs in the office process. There is no need to create an interprocess channel explicitly. A component does not have to create a service manager, because it is provided to the single factory of an implementation by the service manager during a call to <code>createInstance()</code> or <code>createInstanceWithContext()</code>. The single factory receives an <code>XComponentContext</code> or an <code>XMultiServiceFactory</code>, and passes it to the corresponding constructor of the service implementation. From the component context, the implementation gets the service manager using <code>getServiceManager()</code> at the <idl>com.sun.star.uno.XComponentContext</idl> interface.

Revision as of 08:30, 28 July 2008

A component usually runs in the office process. There is no need to create an interprocess channel explicitly. A component does not have to create a service manager, because it is provided to the single factory of an implementation by the service manager during a call to createInstance() or createInstanceWithContext(). The single factory receives an XComponentContext or an XMultiServiceFactory, and passes it to the corresponding constructor of the service implementation. From the component context, the implementation gets the service manager using getServiceManager() at the com.sun.star.uno.XComponentContext interface.

Content on this page is licensed under the Public Documentation License (PDL).
Personal tools
In other languages