<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>web development helpdesk &#187; Timer</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/timer/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Single or double click in JTable</title>
		<link>http://helpdesk.objects.com.au/java/single-or-double-click-in-jtable?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=single-or-double-click-in-jtable</link>
		<comments>http://helpdesk.objects.com.au/java/single-or-double-click-in-jtable#comments</comments>
		<pubDate>Wed, 02 Feb 2011 08:19:16 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[swing]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[JTable]]></category>
		<category><![CDATA[MouseAdapter]]></category>
		<category><![CDATA[MouseListener]]></category>
		<category><![CDATA[Timer]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1749</guid>
		<description><![CDATA[You can use a MouseListener to listen for clicks on your JTable. It will report both clicks and double clicks, reporting the click count via MouseEvent.getClickCount(). However when you double click on an non-editable column in your table your MouseListener unfortunately receives two event. Firstly it receives a single click event for the first click, [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/single-or-double-click-in-jtable/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to execute code at regular interval?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-execute-code-at-regular-interval?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-execute-code-at-regular-interval</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-execute-code-at-regular-interval#comments</comments>
		<pubDate>Mon, 22 Dec 2008 01:26:31 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[thread]]></category>
		<category><![CDATA[Timer]]></category>
		<category><![CDATA[TimerTask]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=782</guid>
		<description><![CDATA[The java.util.Timer class can be used to schedule code to be executed repeated at a fixed interval. The TimerTask class is used to encapsulate the code to be executed. Timer timer = new Timer(); timer.schedule(new TimerTask() { public void run() { // put the code you want to run here } }, initialDelay, interval); Related [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-execute-code-at-regular-interval/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I execute a piece of code at a specified time?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-execute-a-piece-of-code-at-a-specified-time?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-execute-a-piece-of-code-at-a-specified-time</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-execute-a-piece-of-code-at-a-specified-time#comments</comments>
		<pubDate>Wed, 01 Oct 2008 13:14:02 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[thread]]></category>
		<category><![CDATA[Timer]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=367</guid>
		<description><![CDATA[The java.util.Timer class can be used to schedule code to be executed in the future. The TimerTask class is used to encapsulate the code to be executed. Date whenToExecute = getTimeToExecuteCode(); Timer timer = new Timer(); timer.schedule(new TimerTask() { public void run() { // put the code you want to run here } }, whenToExecute); [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-execute-a-piece-of-code-at-a-specified-time/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I execute a block of code after a specified time has elapsed?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-execute-a-block-of-code-after-a-specified-time-has-elapsed?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-execute-a-block-of-code-after-a-specified-time-has-elapsed</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-execute-a-block-of-code-after-a-specified-time-has-elapsed#comments</comments>
		<pubDate>Wed, 01 Oct 2008 13:12:33 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[thread]]></category>
		<category><![CDATA[Timer]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=363</guid>
		<description><![CDATA[The java.util.Timer class can be used to schedule code to be execute in the future. The TimerTask class is used to encapsulate the code to be executed. int delay = 5000; //msecs Timer timer = new Timer(); timer.schedule(new TimerTask() { public void run() { // put the code you want to run here // It [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-execute-a-block-of-code-after-a-specified-time-has-elapsed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

