Difference between revisions of "Documentation/DevGuide/JavaBean/ContainerFactory Interface"
From Apache OpenOffice Wiki
< Documentation | DevGuide
m (1 revision(s)) |
m |
||
Line 7: | Line 7: | ||
{{DISPLAYTITLE:ContainerFactory Interface}} | {{DISPLAYTITLE:ContainerFactory Interface}} | ||
The interface <code>com.sun.star.comp.beans.ContainerFactory</code> defines a factory class that the client implements if it needs to control how popup windows generated by the backend {{PRODUCTNAME}} process are presented within the Java environment. The factory has only one method: | The interface <code>com.sun.star.comp.beans.ContainerFactory</code> defines a factory class that the client implements if it needs to control how popup windows generated by the backend {{PRODUCTNAME}} process are presented within the Java environment. The factory has only one method: | ||
− | + | <source lang="java"> | |
public java.awt.Container createContainer() | public java.awt.Container createContainer() | ||
− | + | </source> | |
It returns a <code>java.awt.Container</code>. | It returns a <code>java.awt.Container</code>. | ||
Revision as of 22:21, 13 April 2008
The interface com.sun.star.comp.beans.ContainerFactory
defines a factory class that the client implements if it needs to control how popup windows generated by the backend OpenOffice.org process are presented within the Java environment. The factory has only one method:
public java.awt.Container createContainer()
It returns a java.awt.Container
.
Content on this page is licensed under the Public Documentation License (PDL). |