1 /************************************************************
2 * Copyright *
3 * Portions of this software are Copyright (c) 1993 - 2002, *
4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew *
5 * - http://www.nevrona.com/Indy/ *
6 ************************************************************/
7 package org.indy.messages;
8
9 import java.text.MessageFormat;
10
11
12 /***
13 * DOCUMENT ME!
14 *
15 * @version $Revision$
16 * @author $author$
17 */
18 class MessagesStrings {
19 private static final String NOMAILBOXES = "Comma delimited list of mail boxes expected, none found: {0}";
20
21 private MessagesStrings() {
22 }
23
24 /***
25 * DOCUMENT ME!
26 *
27 * @param s DOCUMENT ME!
28 *
29 * @return DOCUMENT ME!
30 */
31 public static String getNoMailBoxesString(String s) {
32 return MessageFormat.format(NOMAILBOXES, new Object[] { s });
33 }
34 }
This page was automatically generated by Maven