1 /*2 * Copyright (c) 2001, 2002 The XDoclet team3 * All rights reserved.4 */5 package xdoclet.modules.util;6 7 /**8 * Messages for the Util tags9 *10 * @author Marcus Brito (pazu@animegaiden.com.br)11 * @created 25 Jun 200212 * @version $Revision: 1.2 $13 */14 public class CollectionMessages15 {16 /**17 * @msg.bundle msg="Specified collection alredy exists: ''{0}''."18 */19 public final static String COLLECTION_ALREADY_EXISTS = "COLLECTION_ALREADY_EXISTS";20 21 /**22 * @msg.bundle msg="Collection ''{0}'' not defined."23 */24 public final static String COLLECTION_NOT_DEFINED = "COLLECTION_NOT_DEFINED";25 26 /**27 * @msg.bundle msg="Collection ''{0}'' is not a map."28 */29 public final static String COLLECTION_IS_NOT_MAP = "COLLECTION_IS_NOT_MAP";30 }31