| java.lang.Object org.bouncycastle.i18n.LocalizedMessage org.bouncycastle.i18n.TextBundle
All known Subclasses: org.bouncycastle.i18n.MessageBundle,
Constructor Summary | |
public | TextBundle(String resource, String id) Constructs a new TextBundle using resource as the base name for the
RessourceBundle and id as the message bundle id the resource file. | public | TextBundle(String resource, String id, String encoding) Constructs a new TextBundle using resource as the base name for the
RessourceBundle and id as the message bundle id the resource file. | public | TextBundle(String resource, String id, Object[] arguments) Constructs a new TextBundle using resource as the base name for the
RessourceBundle and id as the message bundle id the resource file. | public | TextBundle(String resource, String id, String encoding, Object[] arguments) Constructs a new TextBundle using resource as the base name for the
RessourceBundle and id as the message bundle id the resource file. |
TEXT_ENTRY | final public static String TEXT_ENTRY(Code) | | text entry key
|
TextBundle | public TextBundle(String resource, String id) throws NullPointerException(Code) | | Constructs a new TextBundle using resource as the base name for the
RessourceBundle and id as the message bundle id the resource file.
Parameters: resource - base name of the resource file Parameters: id - the id of the corresponding bundle in the resource file throws: NullPointerException - if resource or id is null |
TextBundle | public TextBundle(String resource, String id, Object[] arguments) throws NullPointerException(Code) | | Constructs a new TextBundle using resource as the base name for the
RessourceBundle and id as the message bundle id the resource file.
Parameters: resource - base name of the resource file Parameters: id - the id of the corresponding bundle in the resource file Parameters: arguments - an array containing the arguments for the message throws: NullPointerException - if resource or id is null |
TextBundle | public TextBundle(String resource, String id, String encoding, Object[] arguments) throws NullPointerException, UnsupportedEncodingException(Code) | | Constructs a new TextBundle using resource as the base name for the
RessourceBundle and id as the message bundle id the resource file.
Parameters: resource - base name of the resource file Parameters: id - the id of the corresponding bundle in the resource file Parameters: encoding - the encoding of the resource file Parameters: arguments - an array containing the arguments for the message throws: NullPointerException - if resource or id is null throws: UnsupportedEncodingException - if the encoding is not supported |
|
|