KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > modules > util > CollectionMessages


1 /*
2  * Copyright (c) 2001, 2002 The XDoclet team
3  * All rights reserved.
4  */

5 package xdoclet.modules.util;
6
7 /**
8  * Messages for the Util tags
9  *
10  * @author Marcus Brito (pazu@animegaiden.com.br)
11  * @created 25 Jun 2002
12  * @version $Revision: 1.2 $
13  */

14 public class CollectionMessages
15 {
16     /**
17      * @msg.bundle msg="Specified collection alredy exists: ''{0}''."
18      */

19     public final static String JavaDoc COLLECTION_ALREADY_EXISTS = "COLLECTION_ALREADY_EXISTS";
20
21     /**
22      * @msg.bundle msg="Collection ''{0}'' not defined."
23      */

24     public final static String JavaDoc COLLECTION_NOT_DEFINED = "COLLECTION_NOT_DEFINED";
25
26     /**
27      * @msg.bundle msg="Collection ''{0}'' is not a map."
28      */

29     public final static String JavaDoc COLLECTION_IS_NOT_MAP = "COLLECTION_IS_NOT_MAP";
30 }
31
Popular Tags