[Pixelle-commit] SF.net SVN: pixelle: [71] trunk/pixelle/src/com/mebigfatguy/pixelle/ PixelleBundle
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-06-25 02:48:46
|
Revision: 71
http://pixelle.svn.sourceforge.net/pixelle/?rev=71&view=rev
Author: dbrosius
Date: 2008-06-24 19:48:55 -0700 (Tue, 24 Jun 2008)
Log Message:
-----------
javadoc
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleBundle.java
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleBundle.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleBundle.java 2008-06-25 02:47:29 UTC (rev 70)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleBundle.java 2008-06-25 02:48:55 UTC (rev 71)
@@ -20,6 +20,9 @@
import java.util.ResourceBundle;
+/**
+ * manages the resource bundle using in the program
+ */
public class PixelleBundle {
public static final String OK = "ok";
@@ -70,6 +73,12 @@
{
}
+ /**
+ * returns a localized string from a given key
+ *
+ * @param key the key of the string to return
+ * @return the localized string
+ */
public static String getString(String key) {
return rb.getString(key);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|