Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbateman2007-10-02 21:56:47 +0000
committercbateman2007-10-02 21:56:47 +0000
commitbf1c65d77f200fe4fd207f4a2f5d7fb4e4037bab (patch)
tree71549145a9e9498a68c8a1c277410aae1149c772 /jsf/plugins/org.eclipse.jst.jsf.common.ui/src/org/eclipse/jst
parent2e45b067219bd1c5dbfb4c322dbff529432bae3f (diff)
downloadwebtools.jsf-bf1c65d77f200fe4fd207f4a2f5d7fb4e4037bab.tar.gz
webtools.jsf-bf1c65d77f200fe4fd207f4a2f5d7fb4e4037bab.tar.xz
webtools.jsf-bf1c65d77f200fe4fd207f4a2f5d7fb4e4037bab.zip
Cleanup javadoc warnings.
Diffstat (limited to 'jsf/plugins/org.eclipse.jst.jsf.common.ui/src/org/eclipse/jst')
-rw-r--r--jsf/plugins/org.eclipse.jst.jsf.common.ui/src/org/eclipse/jst/jsf/common/ui/internal/utils/ResourceUtils.java21
1 files changed, 12 insertions, 9 deletions
diff --git a/jsf/plugins/org.eclipse.jst.jsf.common.ui/src/org/eclipse/jst/jsf/common/ui/internal/utils/ResourceUtils.java b/jsf/plugins/org.eclipse.jst.jsf.common.ui/src/org/eclipse/jst/jsf/common/ui/internal/utils/ResourceUtils.java
index 07bdff727..75b0f1197 100644
--- a/jsf/plugins/org.eclipse.jst.jsf.common.ui/src/org/eclipse/jst/jsf/common/ui/internal/utils/ResourceUtils.java
+++ b/jsf/plugins/org.eclipse.jst.jsf.common.ui/src/org/eclipse/jst/jsf/common/ui/internal/utils/ResourceUtils.java
@@ -27,8 +27,9 @@ import org.eclipse.jst.jsf.common.ui.internal.logging.Logger;
*/
public abstract class ResourceUtils {
private static Logger _log = JSFUICommonPlugin.getLogger(ResourceUtils.class);
-
- // This is the resource bundle.
+ /**
+ * the resource bundle accessible by all children
+ */
protected ResourceBundle _resources;
/**
@@ -57,13 +58,6 @@ public abstract class ResourceUtils {
}
/**
- * Get the static stored resource bundle for the TRP.
- */
- public ResourceBundle getResourceBundle() {
- return _resources;
- }
-
- /**
* Get the property defined in the resource bundle for the given key. This
* property should be an integer. If none is defined
* (MissingResourceException), return the default.
@@ -72,6 +66,7 @@ public abstract class ResourceUtils {
* the key in the resource bundle.
* @param defaultValue
* default int to return if no value is found for the key.
+ * @return the integer value for key or defaultValue if none
*/
public int getValue(String key, int defaultValue) {
String stringValue = getString(key);
@@ -96,6 +91,7 @@ public abstract class ResourceUtils {
* the key in the resource bundle.
* @param defaultValue
* default long to return if no value is found for the key.
+ * @return the long value for key or defaultValue if none
*/
public long getValue(String key, long defaultValue) {
String stringValue = getString(key);
@@ -118,6 +114,7 @@ public abstract class ResourceUtils {
*
* @param key
* the key in the resource bundle.
+ * @return true if there is a resource corresponding to key
*/
public boolean isResource(String key) {
return getString(key).equals("" + true);
@@ -129,6 +126,7 @@ public abstract class ResourceUtils {
*
* @param key
* the key in the resource bundle.
+ * @return the string value for key or key if not found
*/
public String getString(String key) {
try {
@@ -269,6 +267,11 @@ public abstract class ResourceUtils {
return formatter.format(args);
}
+ /**
+ * Use in the try-finally idiom for inputStream to ensure close
+ * and suppress exceptions on close
+ * @param inputStream
+ */
public static void ensureClosed(InputStream inputStream) {
if (inputStream != null) {
try {

Back to the top