KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > util > platform > Constants


1 /***************************************
2  * *
3  * JBoss: The OpenSource J2EE WebOS *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9
10 package org.jboss.util.platform;
11
12 import org.jboss.util.property.Property;
13
14 /**
15  * Platform constants.
16  *
17  * @version <tt>$Revision: 1.3 $</tt>
18  * @author <a HREF="mailto:jason@planet57.com">Jason Dillon</a>
19  */

20 public interface Constants
21 {
22    /** Platform dependent line separator. */
23    String JavaDoc LINE_SEPARATOR = Property.get("line.separator");
24
25    /** Platform dependant file separator. */
26    String JavaDoc FILE_SEPARATOR = Property.get("file.separator");
27
28    /** Platform dependant path separator. */
29    String JavaDoc PATH_SEPARATOR = Property.get("path.separator");
30 }
31
Popular Tags