new BasicFrameUI()
public function installUI(c:Component):Void
Description copied from ComponentUI
Configures the specified component appropriate for the look and feel.
This method is invoked when the ComponentUI
instance is being installed
as the UI delegate on the specified component. This method should
completely configure the component for the look and feel,
including the following:
LayoutManager
on the component if necessary.
public function uninstallUI(c:Component):Void
Description copied from ComponentUI
Reverses configuration which was done on the specified component during
installUI
. This method is invoked when this
ComponentUI
instance is being removed as the UI delegate
for the specified component. This method should undo the
configuration performed in installUI
, being careful to
leave the Component
instance in a clean state (no
extraneous listeners, look-and-feel-specific property objects, etc.).
This should include the following:
public function create(c:Component):Void
Description copied from ComponentUI
Notifies this UI delegate that it's time to create the specified
component's ui MCs. This method is invoked by Component
when the specified component is being created.
In general this method need not be overridden by subclasses; all look-and-feel ui creating code should reside in this method.