jdk/src/macosx/classes/sun/lwawt/LWComponentPeer.java
changeset 13544 bd136eb2a932
parent 13233 4d45f7ebc0d7
child 13648 90effcfc064f
equal deleted inserted replaced
13543:3b09d120a91c 13544:bd136eb2a932
   280      * LWComponentPeer ctor to let the subclass ctor to finish completely first.
   280      * LWComponentPeer ctor to let the subclass ctor to finish completely first.
   281      * Instead, it's the LWToolkit object who is responsible for initialization.
   281      * Instead, it's the LWToolkit object who is responsible for initialization.
   282      * Note that we call setVisible() at the end of initialization.
   282      * Note that we call setVisible() at the end of initialization.
   283      */
   283      */
   284     public final void initialize() {
   284     public final void initialize() {
   285         platformComponent.initialize(target, this, getPlatformWindow());
   285         platformComponent.initialize(getPlatformWindow());
   286         initializeImpl();
   286         initializeImpl();
   287         setVisible(target.isVisible());
   287         setVisible(target.isVisible());
   288     }
   288     }
   289 
   289 
   290     /**
   290     /**