= Description = 
 * timer 구현 

= Sample = 

{{{#!vim php 
<?php

$window = new WBAppWindow(array(
	'title' => 'AppWindow - 300 * 300 고정크기 Window',
	'width' => 300,
	'height' => 300
));

$window->setVisible(true);

$timer = $window->createTimer('test');

WBApplication::start();

function test($eo) { 
	static $count = 0;

	$eo->window()->setTitle(date('Y-m-d H:i:s'));
	echo $eo->window()->getTitle(), PHP_EOL;

	if ($count == 10) { 
		$eo->object()->destroyTimer();
	}

	$count++;
}

?>
}}}
