All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.bulletproof.util.Lang

java.lang.Object
   |
   +----com.bulletproof.util.Lang

public class Lang
extends Object
Class Lang represents a class to retrieve language dependent values.


Constructor Index

 o Lang()

Method Index

 o get(String)
Retrieve the Text for this lookup value.
 o get(String, int)
Retrieve the Text for this lookup value.
 o get(String, int, int)
Retrieve the Text for this lookup value.
 o get(String, int[])
Retrieve the Text for this lookup value.
 o get(String, String)
Retrieve the Text for this lookup value.
 o get(String, String[])
Retrieve the Text for this lookup value.

Constructors

 o Lang
 public Lang()

Methods

 o get
 public static String get(String lookupKey)
Retrieve the Text for this lookup value.

Parameters:
lookup - the lookup value to retrieve the associated text.
Returns:
the associated text.
 o get
 public static String get(String lookup,
                          String subValue)
Retrieve the Text for this lookup value.

Parameters:
lookup - the lookup value to retrieve the associated text.
subValue - the substitution value for the text.
Returns:
the associated text.
 o get
 public static String get(String lookup,
                          String subValue[])
Retrieve the Text for this lookup value.

Parameters:
lookup - the lookup value to retrieve the associated text.
subValue - the substitution value for the text.
Returns:
the associated text.
 o get
 public static String get(String lookup,
                          int subValue)
Retrieve the Text for this lookup value.

Parameters:
lookup - the lookup value to retrieve the associated text.
subValue - the substitution value for the text.
Returns:
the associated text.
 o get
 public static String get(String lookup,
                          int subValue0,
                          int subValue1)
Retrieve the Text for this lookup value.

Parameters:
lookup - the lookup value to retrieve the associated text.
subValue - the substitution value for the text.
Returns:
the associated text.
 o get
 public static String get(String lookup,
                          int subValue[])
Retrieve the Text for this lookup value.

Parameters:
lookup - the lookup value to retrieve the associated text.
subValue - the substitution value for the text.
Returns:
the associated text.

All Packages  Class Hierarchy  This Package  Previous  Next  Index