|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IMessageConveyor
Retrieve a localized message by its key as specified by an enum.
The strategy in retrieving messages may vary from implementation to implementation.
Method Summary | ||
---|---|---|
|
getMessage(E key,
Object... args)
Retrieve a localized message by its key as specified by an enum. |
|
String |
getMessage(MessageParameterObj mpo)
Syntactic sugar for the case where the massage is contained in a MessageParameterObj . |
Method Detail |
---|
<E extends Enum<?>> String getMessage(E key, Object... args) throws MessageConveyorException
Note that any further arguments passed in 'args' will be interpolated using
the translated message. The interpolation will be done by and according to
conventions of MessageFormat
.
E
- an enum typekey
- an enum instanceargs
- optional arguments
MessageConveyorException
String getMessage(MessageParameterObj mpo) throws MessageConveyorException
MessageParameterObj
.
Equivalent to calling
getMessage(mpo.getKey(), mpo.getArgs());
mpo
- The MessageParameterObj to translate
MessageConveyorException
getMessage(Enum, Object...)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |