<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Java Programming Forum - Learn Java Programming</title>
		<link>http://www.java-forums.org/</link>
		<description>Java Programming Forum - Learning Java easily</description>
		<language>en</language>
		<lastBuildDate>Wed, 22 May 2013 00:37:49 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.java-forums.org/images/misc/rss.png</url>
			<title>Java Programming Forum - Learn Java Programming</title>
			<link>http://www.java-forums.org/</link>
		</image>
		<item>
			<title>Problems with lines</title>
			<link>http://www.java-forums.org/new-java/74146-problems-lines.html</link>
			<pubDate>Wed, 22 May 2013 00:18:08 GMT</pubDate>
			<description>Hello. I have been fighting drawing lines for 2 weeks already and nothing helps. 
 
I am to draw three lines on a panel after pressing a button. I am...</description>
			<content:encoded><![CDATA[<div>Hello. I have been fighting drawing lines for 2 weeks already and nothing helps.<br />
<br />
I am to draw three lines on a panel after pressing a button. I am using two methods. The first one is as follows (I have only included the code referring to the button action):<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; btnPnl5Calculate.addActionListener(new ActionListener() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; @Override<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public void actionPerformed(ActionEvent arg0) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Setting coordinates for the graph<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; graphIndexX1 = (int) (indexTotal * 6 + 622);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; graphIndexX2 = (int) graphIndexX1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; graphIndexY1 = 697;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; graphIndexY2 = (int) (-0.002013 * weightTakeOffPlaneTotal + 1039.2);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; drawLineIndex();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; btnPnl5toPnl6.setEnabled(true);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lblPnl5Next.setVisible(true);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  public void drawLineIndex()&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  Graphics g = this.getGraphics();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  Graphics2D g2d = (Graphics2D) g;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  g2d.setColor(Color.BLUE);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; g2d.setStroke(new BasicStroke(4, BasicStroke.CAP_BUTT, BasicStroke.JOIN_MITER, 1, new float&#91;&#93;{9}, 0));<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  RenderingHints rh = new RenderingHints(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  rh.put(RenderingHints.KEY_RENDERING,RenderingHints.VALUE_RENDER_QUALITY);<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  g2d.drawLine(graphIndexX1, graphIndexY1, graphIndexX2, graphIndexY2);<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div>It works except that when I call this:<br />
btnPnl5toPnl6.setEnabled(true);<br />
lblPnl5Next.setVisible(true);<br />
<br />
The graph is either partially or completely not visible unless I hit the button again. The other problem is that when I go to another panel and return to the panel with the button, the line is not there anymore. I have to press the button again.<br />
<br />
(continued on another page)</div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/new-java/">New To Java</category>
			<dc:creator>igorland</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/new-java/74146-problems-lines.html</guid>
		</item>
		<item>
			<title>Is it possible to add a thread for just a JPanel?</title>
			<link>http://www.java-forums.org/threads-synchronization/74145-possible-add-thread-just-jpanel.html</link>
			<pubDate>Tue, 21 May 2013 23:06:55 GMT</pubDate>
			<description>I basically have a Panel that I need to repaint a bunch of times inside of a method. However, the panel freezes (becomes unresponsive) for the...</description>
			<content:encoded><![CDATA[<div>I basically have a Panel that I need to repaint a bunch of times inside of a method. However, the panel freezes (becomes unresponsive) for the duration of that method. I need a way to separate the GUI from that method so that I can repaint the GUI during that method without interference.</div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/threads-synchronization/">Threads and Synchronization</category>
			<dc:creator>ellondu</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/threads-synchronization/74145-possible-add-thread-just-jpanel.html</guid>
		</item>
		<item>
			<title>License4J 4.0</title>
			<link>http://www.java-forums.org/java-software/74144-license4j-4-0-a.html</link>
			<pubDate>Tue, 21 May 2013 22:23:22 GMT</pubDate>
			<description>License4J is a total solution for software product licensing. It provides Java libraries and GUI tools for generating and validating license keys,...</description>
			<content:encoded><![CDATA[<div>License4J is a total solution for software product licensing. It provides Java libraries and GUI tools for generating and validating license keys, license text, and floating license files. It is designed to be easy to use and integrate in your application. A License Manager GUI is provided for generating and storing licenses, and a Floating License Server can host and serve created floating licenses. An Online.License4J System allows single or multiple license activations to be defined. It also supports license generation through HTTP post either from a payment processor or a custom script.<br />
<br />
<b>Changes:</b><br />
Licenses are now stored in a database. Derby, MySQL, PostgreSQL, and MS SQL Server are supported. License template support was added. A new license type was implemented: basic 25 character license keys. Auto license generation through the HTTP post method is supported. A license activation feature is now available with the Online.License4J system. Products and product categories can be created. Searching for any license string is now possible The GUI was completely changed for easy navigation between products. The runtime and development library were changed for easy integration. All generated license text is now encrypted<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/license4j" target="_blank" rel="nofollow">License4J â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5033d1369175000-license4j-4-0-0521_license4j_4.0.gif"  title="Name:  0521_License4J_4.0.gif
Views: 1
Size:  77.5 KB">0521_License4J_4.0.gif</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/gif.gif" alt="File Type: gif" />
	<a href="http://www.java-forums.org/attachments/java-software/5033d1369175000-license4j-4-0-0521_license4j_4.0.gif" target="_blank">0521_License4J_4.0.gif</a> 
(77.5 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74144-license4j-4-0-a.html</guid>
		</item>
		<item>
			<title>Pastèque Server 0.3</title>
			<link>http://www.java-forums.org/java-software/74143-past-que-server-0-3-a.html</link>
			<pubDate>Tue, 21 May 2013 22:22:11 GMT</pubDate>
			<description>Pastèque (formerly POS-Tech) is point-of-sale software for touchscreen devices. It is designed as multichannel software with a desktop client, a...</description>
			<content:encoded><![CDATA[<div>Pastèque (formerly POS-Tech) is point-of-sale software for touchscreen devices. It is designed as multichannel software with a desktop client, a mobile Android client, and a Web back office.<br />
<br />
<b>Changes:</b><br />
This new version of the server for the 4th level is required to run the next Android version and adds a few features like ordering products and categories and deleting a product.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/pos-tech" target="_blank" rel="nofollow">PastÃ¨que â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5032d1369174881-past-que-server-0-3-0505_past-que_android-1.0.5.png"  title="Name:  0505_Pastèque_Android 1.0.5.png
Views: 1
Size:  374.5 KB">0505_Pastèque_Android 1.0.5.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5032d1369174881-past-que-server-0-3-0505_past-que_android-1.0.5.png" target="_blank">0505_Pastèque_Android 1.0.5.png</a> 
(374.5 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74143-past-que-server-0-3-a.html</guid>
		</item>
		<item>
			<title>Nuiton-I18n 2.5.1</title>
			<link>http://www.java-forums.org/java-software/74142-nuiton-i18n-2-5-1-a.html</link>
			<pubDate>Tue, 21 May 2013 22:18:50 GMT</pubDate>
			<description>Nuiton-I18n is a Java internationalization library based on ResourceBundles. 
 
*Changes:* 
This versions added more xpath expressions for...</description>
			<content:encoded><![CDATA[<div>Nuiton-I18n is a Java internationalization library based on ResourceBundles.<br />
<br />
<b>Changes:</b><br />
This versions added more xpath expressions for parserValidation, isolated tests, and fixed a bug when used with the Tapestry framework.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/nuiton-i18n" target="_blank" rel="nofollow">Nuiton-i18n â€“ Freecode</a></div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74142-nuiton-i18n-2-5-1-a.html</guid>
		</item>
		<item>
			<title>Xowa 0.5.2</title>
			<link>http://www.java-forums.org/java-software/74141-xowa-0-5-2-a.html</link>
			<pubDate>Tue, 21 May 2013 22:17:30 GMT</pubDate>
			<description>XOWA is a desktop application that can read and edit English Wikipedia offline. It displays articles in an HTML browser, and can download images on...</description>
			<content:encoded><![CDATA[<div>XOWA is a desktop application that can read and edit English Wikipedia offline. It displays articles in an HTML browser, and can download images on demand. It can also be used for Wiktionary, Wikisource, Wikiquote, and the non-English counterparts.<br />
<br />
<b>Changes:</b><br />
This release supports a new search syntax (AND, OR, quotes), adds a UI for the new category system, and allows direct reading from a .bz2 dump. Minor fixes/changes are also included.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/xowa" target="_blank" rel="nofollow">XOWA â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5031d1369174645-xowa-0-5-2-0426_xowa_0.4.3.png"  title="Name:  0426_XOWA_0.4.3.png
Views: 1
Size:  467.4 KB">0426_XOWA_0.4.3.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5031d1369174645-xowa-0-5-2-0426_xowa_0.4.3.png" target="_blank">0426_XOWA_0.4.3.png</a> 
(467.4 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74141-xowa-0-5-2-a.html</guid>
		</item>
		<item>
			<title>DEMUX Framework 0.1</title>
			<link>http://www.java-forums.org/java-software/74140-demux-framework-0-1-a.html</link>
			<pubDate>Tue, 21 May 2013 22:14:57 GMT</pubDate>
			<description>DEMUX Framework enables Java developers to build modular, cross-platform applications which can run on desktop, Web, and mobile and embedded devices....</description>
			<content:encoded><![CDATA[<div>DEMUX Framework enables Java developers to build modular, cross-platform applications which can run on desktop, Web, and mobile and embedded devices. It is based on OSGI and supports creating JavaFX desktop applications, mobiles apps (Android, iOS, Windows), and Web applications.<br />
<br />
<b>Changes:</b><br />
Initial release<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/demux-framework" target="_blank" rel="nofollow">DEMUX Framework â€“ Freecode</a></div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74140-demux-framework-0-1-a.html</guid>
		</item>
		<item>
			<title>GSLB.me Dynamic DNS Client 0.1</title>
			<link>http://www.java-forums.org/java-software/74139-gslb-me-dynamic-dns-client-0-1-a.html</link>
			<pubDate>Tue, 21 May 2013 22:13:43 GMT</pubDate>
			<description>GSLB.me Dynamic DNS Client is a client for updating dynamic DNS entries for accounts created on GSLB.me. 
 
*Changes:* 
Initial release 
 
*URL:*...</description>
			<content:encoded><![CDATA[<div>GSLB.me Dynamic DNS Client is a client for updating dynamic DNS entries for accounts created on GSLB.me.<br />
<br />
<b>Changes:</b><br />
Initial release<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/gslbme-dynamic-dns-client" target="_blank" rel="nofollow">GSLB.me Dynamic DNS Client â€“ Freecode</a></div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74139-gslb-me-dynamic-dns-client-0-1-a.html</guid>
		</item>
		<item>
			<title>ZedLog 0.2 Beta</title>
			<link>http://www.java-forums.org/java-software/74138-zedlog-0-2-beta.html</link>
			<pubDate>Tue, 21 May 2013 22:12:47 GMT</pubDate>
			<description>ZedLog is a robust cross-platform input logging tool (A.K.A., a key logger). It is based on a flexible data logging system which makes it easy to get...</description>
			<content:encoded><![CDATA[<div>ZedLog is a robust cross-platform input logging tool (A.K.A., a key logger). It is based on a flexible data logging system which makes it easy to get the required data. It features logging of all keyboard and mouse events, a replay simulation tool, logging to a file, and hiding in the background.<br />
<br />
<b>Changes:</b><br />
This release adds an initial replay simulation tool, saving and opening of log files, a record/pause button, separate mouse pressed and released loggers, a more polished GUI, and a new icon set.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/zedlog" target="_blank" rel="nofollow">ZedLog â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5029d1369174346-zedlog-0-2-beta-0514_zedlog_0.2-beta.png"  title="Name:  0514_ZedLog_0.2 beta.png
Views: 1
Size:  44.9 KB">0514_ZedLog_0.2 beta.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5029d1369174346-zedlog-0-2-beta-0514_zedlog_0.2-beta.png" target="_blank">0514_ZedLog_0.2 beta.png</a> 
(44.9 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74138-zedlog-0-2-beta.html</guid>
		</item>
		<item>
			<title>Dragon parser generator 1.3.9</title>
			<link>http://www.java-forums.org/java-software/74137-dragon-parser-generator-1-3-9-a.html</link>
			<pubDate>Tue, 21 May 2013 22:11:16 GMT</pubDate>
			<description>Dragon produces a consequent, object-oriented, integrated scanner and parser solution and scales for very large grammar definitions. It provides...</description>
			<content:encoded><![CDATA[<div>Dragon produces a consequent, object-oriented, integrated scanner and parser solution and scales for very large grammar definitions. It provides LR(1) and LALR grammar analysis methods and combines the lexical and syntactical analysis and the corresponding code generation. Either C++ or Java code can be generated. The resulting parser code is readable and clean, and can easily be integrated into any C++ or Java application.<br />
<br />
<b>Changes:</b><br />
Autooconf cleanup, a change to lfcbase, and an upgrade to the GPLv3.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/dragon-pg" target="_blank" rel="nofollow">Dragon parser generator â€“ Freecode</a></div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74137-dragon-parser-generator-1-3-9-a.html</guid>
		</item>
		<item>
			<title>Data Crow 3.10</title>
			<link>http://www.java-forums.org/java-software/74136-data-crow-3-10-a.html</link>
			<pubDate>Tue, 21 May 2013 22:10:01 GMT</pubDate>
			<description>Data Crow is a movie, video, book, image, software, and music cataloger/media manager. Data Crow uses MusicBrainz, Amazon, IMDb, and many other Web...</description>
			<content:encoded><![CDATA[<div>Data Crow is a movie, video, book, image, software, and music cataloger/media manager. Data Crow uses MusicBrainz, Amazon, IMDb, and many other Web services to retrieve the information for you. It is highly customizable, easy to use, and feature rich. It helps you to keep track of your loans, allows you to create reports, enables you to create your own modules (using wizards) and, most importantly, enables you to easily manage all your collections.<br />
<br />
<b>Changes:</b><br />
This release mainly focuses on the help file, which has been greatly improved. During the writing of the help file, the discovered issues have been fixed. Small improvements to the GUI have been made to improve the experience in using Data Crow. This is the first release in a long time having completely up-to-date help<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/datacrow" target="_blank" rel="nofollow">Data Crow â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5028d1369174198-data-crow-3-10-0505_data-crow_3.9.23.png"  title="Name:  0505_Data Crow_3.9.23.png
Views: 1
Size:  425.0 KB">0505_Data Crow_3.9.23.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5028d1369174198-data-crow-3-10-0505_data-crow_3.9.23.png" target="_blank">0505_Data Crow_3.9.23.png</a> 
(425.0 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74136-data-crow-3-10-a.html</guid>
		</item>
		<item>
			<title>float to binary string and vice-versa</title>
			<link>http://www.java-forums.org/new-java/74135-float-binary-string-vice-versa.html</link>
			<pubDate>Tue, 21 May 2013 22:09:31 GMT</pubDate>
			<description>Hello, 
 
I am coming from C/C++. And still have to interface with one C library. The problem is facing is following: 
 
The C library sends me...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I am coming from C/C++. And still have to interface with one C library. The problem is facing is following:<br />
<br />
The C library sends me various strings that contain coded floats or ints: basically, 4 chars represent a float or an int (little-Endian).<br />
How can I extract a float or a string from a 4-char string? And how can I code a float or an int to a 4-char string?<br />
<br />
What I basically need are following two functions in Java (here in C language):<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">void getMemoryFromFloat(float floatNumber,char memory&#91;4&#93;)<br />
{ // floatNumber is input, memory is output<br />
&nbsp; &nbsp; memory&#91;0&#93;=((char*)&amp;floatNumber)&#91;0&#93;;<br />
&nbsp; &nbsp; memory&#91;1&#93;=((char*)&amp;floatNumber)&#91;1&#93;;<br />
&nbsp; &nbsp; memory&#91;2&#93;=((char*)&amp;floatNumber)&#91;2&#93;;<br />
&nbsp; &nbsp; memory&#91;3&#93;=((char*)&amp;floatNumber)&#91;3&#93;;<br />
}<br />
<br />
float getFloatFromMemory(char memory&#91;4&#93;)<br />
{ // memory is input<br />
&nbsp; &nbsp; return(((float*)memory)&#91;0&#93;);<br />
}</code><hr />
</div>Thanks for any help!</div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/new-java/">New To Java</category>
			<dc:creator>floating</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/new-java/74135-float-binary-string-vice-versa.html</guid>
		</item>
		<item>
			<title>Jailer 4.0.15.rc</title>
			<link>http://www.java-forums.org/java-software/74134-jailer-4-0-15-rc.html</link>
			<pubDate>Tue, 21 May 2013 22:08:21 GMT</pubDate>
			<description>Jailer is a database subsetting and browsing tool. It is a tool for data exporting, schema browsing, and rendering. It exports consistent,...</description>
			<content:encoded><![CDATA[<div>Jailer is a database subsetting and browsing tool. It is a tool for data exporting, schema browsing, and rendering. It exports consistent, referentially intact row-sets from relational databases. It removes obsolete data without violating integrity. It is DBMS agnostic (by using JDBC), platform independent, and generates DbUnit datasets, hierarchically structured XML, and topologically sorted SQL-DML.<br />
<br />
<b>Changes:</b><br />
This release adds support for high-resolution mouse wheels and for Informix nonlogging raw tables.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/jailer" target="_blank" rel="nofollow">Jailer â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5027d1369174095-jailer-4-0-15-rc-0521_jailer_4.0.15.rc.gif"  title="Name:  0521_Jailer_4.0.15.rc.gif
Views: 1
Size:  150.4 KB">0521_Jailer_4.0.15.rc.gif</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/gif.gif" alt="File Type: gif" />
	<a href="http://www.java-forums.org/attachments/java-software/5027d1369174095-jailer-4-0-15-rc-0521_jailer_4.0.15.rc.gif" target="_blank">0521_Jailer_4.0.15.rc.gif</a> 
(150.4 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74134-jailer-4-0-15-rc.html</guid>
		</item>
		<item>
			<title>Mo Da Browser 0.3.3</title>
			<link>http://www.java-forums.org/java-software/74133-mo-da-browser-0-3-3-a.html</link>
			<pubDate>Tue, 21 May 2013 22:05:49 GMT</pubDate>
			<description>Mo Da Browser aims to be a stable, small, usable browser for Android. It will be a core browser of at most half a dozen Java files for anyone to...</description>
			<content:encoded><![CDATA[<div>Mo Da Browser aims to be a stable, small, usable browser for Android. It will be a core browser of at most half a dozen Java files for anyone to build up from and add their own value. Developers can then sell their app with its added value into the marketplace. The main goal is to rework how things are done in browsing (how to go forward and back, how to control the browser, and how to record and share where you've been).<br />
<br />
<b>Changes:</b><br />
The ability to make outgoing phone calls by clicking on tel:// protocol links in webpages has been added.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/mo-da-browser" target="_blank" rel="nofollow">Mo Da Browser â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5026d1369173944-mo-da-browser-0-3-3-0426_mo-da-browser_0.2.6.png"  title="Name:  0426_Mo Da Browser_0.2.6.png
Views: 1
Size:  204.2 KB">0426_Mo Da Browser_0.2.6.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5026d1369173944-mo-da-browser-0-3-3-0426_mo-da-browser_0.2.6.png" target="_blank">0426_Mo Da Browser_0.2.6.png</a> 
(204.2 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74133-mo-da-browser-0-3-3-a.html</guid>
		</item>
		<item>
			<title>Sleef 2.80</title>
			<link>http://www.java-forums.org/java-software/74132-sleef-2-80-a.html</link>
			<pubDate>Tue, 21 May 2013 22:03:58 GMT</pubDate>
			<description>SLEEF (SIMD Library for Evaluating Elementary Functions) is a library that facilitates programming with SIMD instructions. It implements the...</description>
			<content:encoded><![CDATA[<div>SLEEF (SIMD Library for Evaluating Elementary Functions) is a library that facilitates programming with SIMD instructions. It implements the trigonometric functions, inverse trigonometric functions, exponential and logarithmic functions in double precision without table look-ups, scattering from, or gathering into SIMD registers, or conditional branches. This library also includes some functions for evaluation in single precision.<br />
<br />
<b>Changes:</b><br />
This release adds support for the ARM NEON instruction set. Higher accuracy single precision functions were added: sinf_u1, cosf_u1, sincosf_u1, tanf_u1, asinf_u1, acosf_u1, atanf_u1, atan2f_u1, logf_u1, and cbrtf_u1<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/sleef" target="_blank" rel="nofollow">SLEEF â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5025d1369173830-sleef-2-80-0521_sleef_2.80.png"  title="Name:  0521_SLEEF_2.80.png
Views: 1
Size:  165.9 KB">0521_SLEEF_2.80.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5025d1369173830-sleef-2-80-0521_sleef_2.80.png" target="_blank">0521_SLEEF_2.80.png</a> 
(165.9 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74132-sleef-2-80-a.html</guid>
		</item>
		<item>
			<title>Jodd 3.4.4</title>
			<link>http://www.java-forums.org/java-software/74131-jodd-3-4-4-a.html</link>
			<pubDate>Tue, 21 May 2013 22:02:21 GMT</pubDate>
			<description>Jodd is a Java utility library and set of frameworks. Jodd tools enrich the JDK with many powerful and feature rich utilities. It helps with everyday...</description>
			<content:encoded><![CDATA[<div>Jodd is a Java utility library and set of frameworks. Jodd tools enrich the JDK with many powerful and feature rich utilities. It helps with everyday tasks, and makes code more robust and reliable. Jodd frameworks is set of lightweight application frameworks, compact yet powerful. Designed following the CoC, DRY, and SCS principles, it makes development simple, but not simpler; you get 90% of the features with 10% of the usual effort.<br />
<br />
<b>Changes:</b><br />
Jodd micro frameworks have been upgraded. DbOom now supports entityAware mode. All *One* classes have been removed. Some bugs have been fixed. Lagarto parser performance was improved.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/jodd" target="_blank" rel="nofollow">Jodd â€“ Freecode</a></div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74131-jodd-3-4-4-a.html</guid>
		</item>
		<item>
			<title>Nhi1 0.17</title>
			<link>http://www.java-forums.org/java-software/74124-nhi1-0-17-a.html</link>
			<pubDate>Tue, 21 May 2013 21:23:46 GMT</pubDate>
			<description>NHI1 is an attempt to create a non-human intelligence. It is composed of several sub-projects like theLink (formerly known as libmsgque) and...</description>
			<content:encoded><![CDATA[<div>NHI1 is an attempt to create a non-human intelligence. It is composed of several sub-projects like theLink (formerly known as libmsgque) and theBrain, which is a persistent storage system able to save a data package from theLink without transformation.<br />
<br />
<b>Changes:</b><br />
A redesigned build system, new Linux container support (lxc), redesigned tests, new end user tools, bugfixes, and a redesigned Windows build.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/libmsgque" target="_blank" rel="nofollow">NHI1 â€“ Freecode</a></div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74124-nhi1-0-17-a.html</guid>
		</item>
		<item>
			<title>JStock 1.0.7a</title>
			<link>http://www.java-forums.org/java-software/74123-jstock-1-0-7a.html</link>
			<pubDate>Tue, 21 May 2013 21:22:31 GMT</pubDate>
			<description>JStock is stock market software for 26 countries. It provides a stock watchlist, an intraday stock price snapshot, a stock indicator editor, a stock...</description>
			<content:encoded><![CDATA[<div>JStock is stock market software for 26 countries. It provides a stock watchlist, an intraday stock price snapshot, a stock indicator editor, a stock indicator scanner, and portfolio management. Free SMS/email alerts are supported.<br />
<br />
<b>Changes:</b><br />
Chinese stock names are now supported for Taiwan. A critical bug during stock deletion was fixed along with a bug when editing sell transactions. The buy dialog box UI was fixed. The StockInfo data structure is now used for Dividend. Taiwan now uses red to indicate up, which is the same as China. The UI was improved. Newly added stocks are now highlighted<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/jstock-2" target="_blank" rel="nofollow">JStock - Free Stock Market Software â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5024d1369171348-jstock-1-0-7a-0521_jstock_1.0.7a.png"  title="Name:  0521_JStock_1.0.7a.png
Views: 1
Size:  23.5 KB">0521_JStock_1.0.7a.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5024d1369171348-jstock-1-0-7a-0521_jstock_1.0.7a.png" target="_blank">0521_JStock_1.0.7a.png</a> 
(23.5 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74123-jstock-1-0-7a.html</guid>
		</item>
		<item>
			<title>Imperialism Remake 0.1.3</title>
			<link>http://www.java-forums.org/java-software/74122-imperialism-remake-0-1-3-a.html</link>
			<pubDate>Tue, 21 May 2013 21:20:48 GMT</pubDate>
			<description>The aim of this project is to create a free (open source, OS independent) remake of the classic SSI game Imperialism. While the spirit and many...</description>
			<content:encoded><![CDATA[<div>The aim of this project is to create a free (open source, OS independent) remake of the classic SSI game Imperialism. While the spirit and many concepts of the original should be preserved, it should not become a pure copy but advance the concept in a sense that modern elements of strategic games are included, e.g. of the Civilization series. The game is written in Java using Swing for the user interface. The philosophy is to keep it as simple as possible, use standard/well tested libraries wherever possible and to demand clean, understandable code.<br />
<br />
<b>Changes:</b><br />
A nicer start screen was included.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/imperialism-remake" target="_blank" rel="nofollow">Imperialism Remake â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5023d1369171240-imperialism-remake-0-1-3-0521_imperialism-remake_0.1.3.jpg"  title="Name:  0521_Imperialism Remake_0.1.3.jpg
Views: 1
Size:  119.3 KB">0521_Imperialism Remake_0.1.3.jpg</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.java-forums.org/attachments/java-software/5023d1369171240-imperialism-remake-0-1-3-0521_imperialism-remake_0.1.3.jpg" target="_blank">0521_Imperialism Remake_0.1.3.jpg</a> 
(119.3 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74122-imperialism-remake-0-1-3-a.html</guid>
		</item>
		<item>
			<title>Aspose.Email for Java 2.9.0.0</title>
			<link>http://www.java-forums.org/java-software/74121-aspose-email-java-2-9-0-0-a.html</link>
			<pubDate>Tue, 21 May 2013 21:16:55 GMT</pubDate>
			<description>Aspose.Email for Java is a Java component for reading and writing Microsoft Outlook MSG files without using Outlook. It can create and update MSG...</description>
			<content:encoded><![CDATA[<div>Aspose.Email for Java is a Java component for reading and writing Microsoft Outlook MSG files without using Outlook. It can create and update MSG files, and retrieve properties such as subject, body, recipients, attachments, sender information, MAPI properties. It can be used with Web or desktop applications.<br />
<br />
<b>Changes:</b><br />
This release supports adding contacts, notes, tasks, calendar, and journal items to PST files in the same way as messages are added to PST. It fixes a number of bugs reported by customers and users, issues related to email conversion to other formats such as MHTML, saving images from a VCard, processing ICS files, creating PSTs with a large number of email messages, saving attachments from a message using stream, and some exceptions.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/asposeemail-for-java" target="_blank" rel="nofollow">Aspose.Email for Java â€“ Freecode</a></div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74121-aspose-email-java-2-9-0-0-a.html</guid>
		</item>
		<item>
			<title>JDAL (Java Database Application Library) 1.3.1</title>
			<link>http://www.java-forums.org/java-software/74120-jdal-java-database-application-library-1-3-1-a.html</link>
			<pubDate>Tue, 21 May 2013 21:12:42 GMT</pubDate>
			<description>JDAL is a Java library which aims to help developers make database applications easily using Spring Framework and Hibernate, JPA, or IBatis ORMs. It...</description>
			<content:encoded><![CDATA[<div>JDAL is a Java library which aims to help developers make database applications easily using Spring Framework and Hibernate, JPA, or IBatis ORMs. It supports generic DAOs and ready-to-use UI Components with server-side pagination and sorting.<br />
<br />
<b>Changes:</b><br />
This release adds a spring custom namespace for the jdal-core and jdal-swing libraries.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/jdal-java-database-application-library" target="_blank" rel="nofollow">JDAL (Java Database Application Library) â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5022d1369170752-jdal-java-database-application-library-1-3-1-0521_jdal_1.3.1.png"  title="Name:  0521_JDAL_1.3.1.png
Views: 1
Size:  260.8 KB">0521_JDAL_1.3.1.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5022d1369170752-jdal-java-database-application-library-1-3-1-0521_jdal_1.3.1.png" target="_blank">0521_JDAL_1.3.1.png</a> 
(260.8 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74120-jdal-java-database-application-library-1-3-1-a.html</guid>
		</item>
		<item>
			<title>Blue Mind 2.0.0</title>
			<link>http://www.java-forums.org/java-software/74119-blue-mind-2-0-0-a.html</link>
			<pubDate>Tue, 21 May 2013 21:10:29 GMT</pubDate>
			<description>Blue Mind is a messaging and collaboration platform. It offers scalable shared messaging, calendars and contacts with advanced mobility (iPhone,...</description>
			<content:encoded><![CDATA[<div>Blue Mind is a messaging and collaboration platform. It offers scalable shared messaging, calendars and contacts with advanced mobility (iPhone, iPad, Android, etc.), and Outlook and Thunderbird connectivity support. Designed with simplicity as a goal, it uses Web 2.0 technologies with a Javascrit UI, offline Web capability, and a Web-services-oriented pluggable architecture.<br />
<br />
<b>Changes:</b><br />
This is the first 2.0 stable release. It brings numerous major features, including a new webmail UI, native integration of the Blue Mind Calendar as a Thunderbird tab, native support of High Availability with graphical installation, incremental and versioning backups, hierarchical storage management, domain calendars and addressbooks, advanced identities management with identities on shared mailboxes, domain and shared mailboxes SIEVE filters, and improved Web storage (local, session, indexedb, and websql) support with automatic selection. The Spanish and Slovak languages have been added<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/blue-mind" target="_blank" rel="nofollow">Blue Mind â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5021d1369170623-blue-mind-2-0-0-0503_blue-mind_1.0.10.png"  title="Name:  0503_Blue Mind_1.0.10.png
Views: 1
Size:  19.5 KB">0503_Blue Mind_1.0.10.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5021d1369170623-blue-mind-2-0-0-0503_blue-mind_1.0.10.png" target="_blank">0503_Blue Mind_1.0.10.png</a> 
(19.5 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74119-blue-mind-2-0-0-a.html</guid>
		</item>
		<item>
			<title>Mapyrus 1.301</title>
			<link>http://www.java-forums.org/java-software/74118-mapyrus-1-301-a.html</link>
			<pubDate>Tue, 21 May 2013 21:08:20 GMT</pubDate>
			<description>Mapyrus is software for creating plots of points, lines, polygons, and labels in PostScript, PDF, SVG, and Web image output formats. It combines the...</description>
			<content:encoded><![CDATA[<div>Mapyrus is software for creating plots of points, lines, polygons, and labels in PostScript, PDF, SVG, and Web image output formats. It combines the following three components: A Logo or turtle graphics language, reading of GIS datasets and RDBMS tables, and running as a stand-alone program, as a Java Servlet, or as a self-contained Web server.<br />
<br />
<b>Changes:</b><br />
CMYK colors were added for PostScript and PDF output. An upgrade to Java 6 and the latest version of project dependencies was made.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/mapyrus" target="_blank" rel="nofollow">Mapyrus â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5020d1369170496-mapyrus-1-301-0521_mapyrus_..png"  title="Name:  0521_Mapyrus_..png
Views: 1
Size:  9.5 KB">0521_Mapyrus_..png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5020d1369170496-mapyrus-1-301-0521_mapyrus_..png" target="_blank">0521_Mapyrus_..png</a> 
(9.5 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74118-mapyrus-1-301-a.html</guid>
		</item>
		<item>
			<title>Playtomic 0.1</title>
			<link>http://www.java-forums.org/java-software/74117-playtomic-0-1-a.html</link>
			<pubDate>Tue, 21 May 2013 21:00:59 GMT</pubDate>
			<description>Playtomic is a set of client and server APIs for game leaderboards, user generated content, and dynamic updates. It began as a hosted service...</description>
			<content:encoded><![CDATA[<div>Playtomic is a set of client and server APIs for game leaderboards, user generated content, and dynamic updates. It began as a hosted service providing tools and analytics for game developers, but is now available for developers to operate on their own. It includes the API server which is written in NodeJS and backed with MongoDB, along with game client APIs for HTML5, Flash, iOS, Android, Windows, and Unity3d games.<br />
<br />
<b>Changes:</b><br />
Initial release<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/playtomic" target="_blank" rel="nofollow">Playtomic â€“ Freecode</a></div>

]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74117-playtomic-0-1-a.html</guid>
		</item>
		<item>
			<title>DataNucleus AccessPlatform 3.2.2</title>
			<link>http://www.java-forums.org/java-software/74116-datanucleus-accessplatform-3-2-2-a.html</link>
			<pubDate>Tue, 21 May 2013 20:56:38 GMT</pubDate>
			<description>DataNucleus AccessPlatform is a standards-compliant Java persistence product. It is fully compliant with the JDO1, JDO2, JDO2.1, JDO2.2, JDO3, JPA1,...</description>
			<content:encoded><![CDATA[<div>DataNucleus AccessPlatform is a standards-compliant Java persistence product. It is fully compliant with the JDO1, JDO2, JDO2.1, JDO2.2, JDO3, JPA1, and JPA2 Java standards, and provides a REST API. It complies with the OGC Simple Feature Spec for persistence of geospatial Java types. It allows access to all popular RDBMS available today, together with the MongoDB, LDAP, NeoDatis, JSON, Excel/ODF spreadsheets, XML, BigTable, HBase, and Neo4j databases.<br />
<br />
<b>Changes:</b><br />
Support for some JPA2.1 API methods was added. Support for some additional JDOQL constructs was added. The ability to specify the type of ObjectProvider used was added. L2 cache store/retrieve mode support was added. Improvements to the operation queue were made. JDOQL time methods had a bug for SQLServer, which was fixed. Various other bugs were fixed<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/datanucleusaccess" target="_blank" rel="nofollow">DataNucleus AccessPlatform â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5017d1369169778-datanucleus-accessplatform-3-2-2-0521_datanucleus-accessplatform_3.2.2.jpg"  title="Name:  0521_DataNucleus AccessPlatform_3.2.2.jpg
Views: 1
Size:  1.9 KB">0521_DataNucleus AccessPlatform_3.2.2.jpg</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.java-forums.org/attachments/java-software/5017d1369169778-datanucleus-accessplatform-3-2-2-0521_datanucleus-accessplatform_3.2.2.jpg" target="_blank">0521_DataNucleus AccessPlatform_3.2.2.jpg</a> 
(1.9 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74116-datanucleus-accessplatform-3-2-2-a.html</guid>
		</item>
		<item>
			<title>CloverETL Designer 3.4.0</title>
			<link>http://www.java-forums.org/java-software/74115-cloveretl-designer-3-4-0-a.html</link>
			<pubDate>Tue, 21 May 2013 20:54:09 GMT</pubDate>
			<description>CloverETL Designer is a visual data transformations designer for the CloverETL framework. It can be used to create, edit, and deploy transformation...</description>
			<content:encoded><![CDATA[<div>CloverETL Designer is a visual data transformations designer for the CloverETL framework. It can be used to create, edit, and deploy transformation graphs, which are then executed by the CloverETL tool. The designer has a form of Eclipse plugin.<br />
<br />
<b>Changes:</b><br />
This release contains all the features of its 2 milestones, and more. Only one cluster node needs a connection to the server database; other nodes will connect through it. There is a ClusterSimpleCopy component and improved visualization of errors in the graph log. HTTPConnector supports PUT and DELETE methods.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/cloveretlgui" target="_blank" rel="nofollow">CloverETL Designer â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5016d1369169640-cloveretl-designer-3-4-0-0521_cloveretl-designer_3.4.0.png"  title="Name:  0521_CloverETL Designer_3.4.0.png
Views: 1
Size:  279.7 KB">0521_CloverETL Designer_3.4.0.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5016d1369169640-cloveretl-designer-3-4-0-0521_cloveretl-designer_3.4.0.png" target="_blank">0521_CloverETL Designer_3.4.0.png</a> 
(279.7 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74115-cloveretl-designer-3-4-0-a.html</guid>
		</item>
		<item>
			<title>CloverETL 3.4.0</title>
			<link>http://www.java-forums.org/java-software/74114-cloveretl-3-4-0-a.html</link>
			<pubDate>Tue, 21 May 2013 20:51:33 GMT</pubDate>
			<description>CloverETL is Java-based tool/framework for data integration and creation of data transformations. It is component based and follows the concept of...</description>
			<content:encoded><![CDATA[<div>CloverETL is Java-based tool/framework for data integration and creation of data transformations. It is component based and follows the concept of transformation graphs which consist of individual nodes/components performing simple (or complex) operations on data. Any transformation can be defined as a set of interconnected nodes through which data flows. CloverETL can be used as a standalone application or be embedded into a larger project.<br />
<br />
<b>Changes:</b><br />
This release contains all the features of its 2 milestones and more. Only one cluster node needs a connection to server database; other nodes will connect through it. There is a ClusterSimpleCopy component and improved visualization of errors in the graph log. HTTPConnector supports PUT and DELETE methods.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/cloveretl" target="_blank" rel="nofollow">CloverETL â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5015d1369169477-cloveretl-3-4-0-0521_cloveretl_3.4.0.png"  title="Name:  0521_CloverETL_3.4.0.png
Views: 1
Size:  551.8 KB">0521_CloverETL_3.4.0.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5015d1369169477-cloveretl-3-4-0-0521_cloveretl_3.4.0.png" target="_blank">0521_CloverETL_3.4.0.png</a> 
(551.8 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74114-cloveretl-3-4-0-a.html</guid>
		</item>
		<item>
			<title>Oddjob 1.3.0</title>
			<link>http://www.java-forums.org/java-software/74113-oddjob-1-3-0-a.html</link>
			<pubDate>Tue, 21 May 2013 20:50:00 GMT</pubDate>
			<description>Oddjob is a Java job scheduler and task automation framework. A GUI designer or XML are used to define a hierarchy of jobs. Sequential, parallel, and...</description>
			<content:encoded><![CDATA[<div>Oddjob is a Java job scheduler and task automation framework. A GUI designer or XML are used to define a hierarchy of jobs. Sequential, parallel, and conditional execution (or combinations) allow for nearly any business process to be modelled. Oddjob can run on the desktop or on a server and uses JMX to control remote instances via an Explorer-style GUI. Basic Web-based monitoring is also available. It can be embedded in client code and is easily extensible via a simple API.<br />
<br />
<b>Changes:</b><br />
This release includes an improved For Each Job that supports a parallel run window and the ability to use Oddjob Designer on the nested configuration. Timer and Retry now allow the nextDue property to be set while the timer is running. A Grep Job has been added that can search files or any other input for text or a regular expression. Numerous bugfixes and small enhancements.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/oddjob" target="_blank" rel="nofollow">Oddjob â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5014d1369169393-oddjob-1-3-0-0521_oddjob_1.3.0.gif"  title="Name:  0521_Oddjob_1.3.0.gif
Views: 2
Size:  27.0 KB">0521_Oddjob_1.3.0.gif</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/gif.gif" alt="File Type: gif" />
	<a href="http://www.java-forums.org/attachments/java-software/5014d1369169393-oddjob-1-3-0-0521_oddjob_1.3.0.gif" target="_blank">0521_Oddjob_1.3.0.gif</a> 
(27.0 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74113-oddjob-1-3-0-a.html</guid>
		</item>
		<item>
			<title>DynamicReports 3.1.3</title>
			<link>http://www.java-forums.org/java-software/74112-dynamicreports-3-1-3-a.html</link>
			<pubDate>Tue, 21 May 2013 20:46:55 GMT</pubDate>
			<description><![CDATA[DynamicReports is a Java reporting library based on JasperReports. It allows you to create dynamic report designs and it doesn't need a visual report...]]></description>
			<content:encoded><![CDATA[<div>DynamicReports is a Java reporting library based on JasperReports. It allows you to create dynamic report designs and it doesn't need a visual report designer. You can very quickly create reports and produce documents that can be displayed, printed, or exported into many popular formats such as PDF, Excel, Word, and others.<br />
<br />
<b>Changes:</b><br />
This release adds support for an empty column, adds the possibility to update styles which were loaded from a template style, and adds various improvements.<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/dynamicreports" target="_blank" rel="nofollow">DynamicReports â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5013d1369169207-dynamicreports-3-1-3-0521_dynamicreports_3.1.3.png"  title="Name:  0521_DynamicReports_3.1.3.png
Views: 1
Size:  113.4 KB">0521_DynamicReports_3.1.3.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/png.gif" alt="File Type: png" />
	<a href="http://www.java-forums.org/attachments/java-software/5013d1369169207-dynamicreports-3-1-3-0521_dynamicreports_3.1.3.png" target="_blank">0521_DynamicReports_3.1.3.png</a> 
(113.4 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74112-dynamicreports-3-1-3-a.html</guid>
		</item>
		<item>
			<title>Mars Simulation Project 3.04</title>
			<link>http://www.java-forums.org/java-software/74111-mars-simulation-project-3-04-a.html</link>
			<pubDate>Tue, 21 May 2013 20:45:16 GMT</pubDate>
			<description>The Mars Simulation Project is an open source Java project to create a simulation of a future human settlement on the planet Mars. 
 
*Changes:*...</description>
			<content:encoded><![CDATA[<div>The Mars Simulation Project is an open source Java project to create a simulation of a future human settlement on the planet Mars.<br />
<br />
<b>Changes:</b><br />
This release adds new local X,Y settlement locations for people and vehicles, vehicles displayed on the settlement map tool, new arriving settlements created and edited with the resupply tool, and a new tutorial window which displays when the program is first started<br />
<br />
<b>URL:</b><br />
<a href="http://freecode.com/projects/mars-sim" target="_blank" rel="nofollow">Mars Simulation Project â€“ Freecode</a><br />
<br />
<a href="http://www.java-forums.org/attachments/java-software/5012d1369169113-mars-simulation-project-3-04-0521_mars-simulation-project_3.04.jpg"  title="Name:  0521_Mars Simulation Project_3.04.jpg
Views: 1
Size:  56.2 KB">0521_Mars Simulation Project_3.04.jpg</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.java-forums.org/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.java-forums.org/attachments/java-software/5012d1369169113-mars-simulation-project-3-04-0521_mars-simulation-project_3.04.jpg" target="_blank">0521_Mars Simulation Project_3.04.jpg</a> 
(56.2 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.java-forums.org/java-software/">Java Software</category>
			<dc:creator>java software</dc:creator>
			<guid isPermaLink="true">http://www.java-forums.org/java-software/74111-mars-simulation-project-3-04-a.html</guid>
		</item>
	</channel>
</rss>
