Home | History | Annotate | Download | only in util
      1 /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
      2  *
      3  * This program and the accompanying materials are made available under
      4  * the terms of the Common Public License v1.0 which accompanies this distribution,
      5  * and is available at http://www.eclipse.org/legal/cpl-v10.html
      6  *
      7  * $Id: IConstants.java,v 1.1.1.1 2004/05/09 16:57:52 vlad_r Exp $
      8  */
      9 package com.vladium.util;
     10 
     11 import java.io.File;
     12 
     13 // ----------------------------------------------------------------------------
     14 /**
     15  * @author Vlad Roubtsov, (C) 2003
     16  */
     17 public
     18 interface IConstants
     19 {
     20     // public: ................................................................
     21 
     22     String [] EMPTY_STRING_ARRAY = new String [0];
     23     File [] EMPTY_FILE_ARRAY = new File [0];
     24     int [] EMPTY_INT_ARRAY = new int [0];
     25 
     26     String EOL = System.getProperty ("line.separator", "\n");
     27 
     28     String INDENT_INCREMENT = "  ";
     29 
     30 } // end of interface
     31 // ----------------------------------------------------------------------------