01: package com.xoetrope.util;
02:
03: /**
04: * Some defaults for text handling
05: *
06: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
07: * the GNU Public License (GPL), please see license.txt for more details. If
08: * you make commercial use of this software you must purchase a commercial
09: * license from Xoetrope.</p>
10: * <p> $Revision: 1.4 $</p>
11: */
12: public class XTextDefaults {
13: /**
14: * Default encoding for CRLF pairs in the properties files
15: */
16: public static String CRLF_PAIR_ENCODING = "${CRLF}";
17: public static String CRLF_PAIR = "\r\n";
18: }
|