}
public static void main ( final String[] args )
{
WebLookAndFeel.install ();
final TestFrame tf = TestFrame.show ( new ComplexExample ().getPreview ( null ), 0 );
HotkeyManager.registerHotkey ( Hotkey.SPACE, new HotkeyRunnable ()
{
@Override
public void run ( final KeyEvent e )
{
tf.pack ();
}
} );
}