<?xml version="1.0"?>
<?xml-stylesheet href="/App_Themes/Rss/Rss.xsl" type="text/xsl"?>
<rss version="2.0" xmlns:snippetcenter="http://www.snippetcenter.org/">
<channel>
	<title>snippetcenter.org Snippet Feed - Java</title>
	<link>http://www.snippetcenter.org/</link>
	<description>The newest Snippets in  Java</description>
	<language>en-us</language>
	<copyright>snippetcenter.org</copyright>
	<generator>Advice: This is a RSS Document for reading in your RSS-Reader. Click here for mor informations.</generator>

	<image>
		<url>http://www.snippetcenter.org/Library/Media/Public/button_88x31.png</url>
		<title>snippetcenter.org</title>
		<link>http://www.snippetcenter.org/</link>
		<width>88</width>
		<height>31</height>
	</image>
	
	<item>
     <title><![CDATA[MessageBox]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/messagebox-s1931.aspx]]></guid>
     <pubDate>Wed, 25 Oct 2006 21:04:00 GMT</pubDate>
     <description><![CDATA[Da es in Java keine gute MessageBox gibt habe ich zwei Klassen geschrieben, mit deren Hilfe man eine MessageBox wie bei VB oder PB erstellen kann. Die Methode MessageBox der Klasse Standards wird aufgerufen, die Parameter werden übergeben und es kommt ein Wert vom Typ String zurück, der die Schaltfläche auf die der Benutzer geklickt hat darstellt. 

Ein Aufruf würde wiefolgt aussehen:
s_return = Standard.MessageBox("Test", "Test", s.information, s.mb_yesnocancel);

Hier wird eine MessageBox erzeugt die die Schaltflächen Yes, No, Cancel enthält, das Icon Information anzeigt, als Titel und als Text den String "Test" anzeigt. Zum Schluss wird in der Variable s_return z.B. der Wert "Yes" gespeichert wenn der Benutzer auf "Ja" geklickt hat.

Die beiden Klassen public class s und public class Standard müssen sie zuerst importieren (Strg+Shift+O)]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/messagebox-s1931.aspx]]></link>
</item>

<item>
     <title><![CDATA[ReadTextFromFile]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/readtextfromfile-s1909.aspx]]></guid>
     <pubDate>Mon, 24 Jul 2006 01:30:00 GMT</pubDate>
     <description><![CDATA[This class reads a text from a file and prints it on the console.

Please replace example.txt, with the name of your file.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/readtextfromfile-s1909.aspx]]></link>
</item>

<item>
     <title><![CDATA[ArrayList Utilities]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/arraylist-utilities-s1878.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[This class provides helper methods for manipulating objects of the java.util.ArrayList.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/arraylist-utilities-s1878.aspx]]></link>
</item>

<item>
     <title><![CDATA[Chaining Exception]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/chaining-exception-s1872.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[This is a Java 1.4.1 Exception class for users of pre 1.4.1.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/chaining-exception-s1872.aspx]]></link>
</item>

<item>
     <title><![CDATA[Global Trade Identification Number GTIN]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/global-trade-identification-number-gtin-s1871.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[This class can generate the check sum for and properly format the output of UCC-8, UCC-12, UCC-13, UCC-14 and SSCC identification numbers.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/global-trade-identification-number-gtin-s1871.aspx]]></link>
</item>

<item>
     <title><![CDATA[Agilesoft Query Iterator]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/agilesoft-query-iterator-s1869.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[Iterator class for an Agilesoft API Query.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/agilesoft-query-iterator-s1869.aspx]]></link>
</item>

<item>
     <title><![CDATA[Agilesoft Collection Iterator]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/agilesoft-collection-iterator-s1867.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[This is an Iterator class for an Agilesoft API Collection.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/agilesoft-collection-iterator-s1867.aspx]]></link>
</item>

<item>
     <title><![CDATA[TelephoneNumber Class]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/telephonenumber-class-s1861.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[The TelephoneNumber class represents a US telephone number. This class contains many constructors for various uses. It then stores the telephone number internally in seperate codes (area code, exchange, etc.). This encouragesuse of the format method to output the telephone number in any style the programmer wishes. [needs I18N work] Example usage:            long number = 8005551212L;            TelephoneNumber phone = new TelephoneNumber(number);            StringBuffer msg = new StringBuffer(&quot;Call me at &quot;);            msg.append(phone.format());            // msg is now &quot;Call me at (800) 555-1212&quot;      ]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/telephonenumber-class-s1861.aspx]]></link>
</item>

<item>
     <title><![CDATA[match?* for JAVA]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/match-for-java-s1857.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[ Strings with wildchars verifier, THANK U PANCHIIIIII   @see match*?  ]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/match-for-java-s1857.aspx]]></link>
</item>

<item>
     <title><![CDATA[Site Generator 1.0]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/site-generator-10-s1856.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[Websites often try to produce a consistent look and layout across several pages. Although the content displayed on each page changes, things such as a logo, navigation links, other graphics and background images may be constant for each page throughout the site. When such a site requires one of these consistent elements to be changed it can prove time-consuming if each page has been separately constructed. &quot;One solution to this problem is to produce a template that contains all of the core elements of the site. There would be a place in the template where the content for a page can be inserted. The solution then involves automating a way to generate pages based on this template, from a series of page fragments containing the content for each page. Subsequent changes to the template can then be made, the pages automatically regenerated, and the site is instantly updated. &quot;SiteGenerator provides a way of doing this. It generates pages, based on the template, which include the fragment pages. There are two ways that SiteGenerator can generate these new pages: Insert the entire page fragment text, Insert the path and filename of the page fragment. The second method requires that the website can serve pages that allow some form of include statement, such as in a JSP.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/site-generator-10-s1856.aspx]]></link>
</item>



</channel>
</rss>
