1   package org.slf4j.converter;
2   
3   public class Constant {
4   
5   	public final static int JCL_TO_SLF4J = 1;
6   
7   	public final static String LINE_COMMENT = "//";
8   
9   	public final static String BLOCK_COMMENT_START = "/*";
10  
11  	public final static String BLOCK_COMMENT_END = "*/";
12  
13  	public final static Integer INDEX_0 = new Integer(0);
14  
15  	public final static Integer INDEX_1 = new Integer(1);
16  
17  	public final static Integer INDEX_2 = new Integer(2);
18  
19  	public final static Integer INDEX_3 = new Integer(3);
20  
21  	public final static Integer INDEX_4 = new Integer(4);
22  
23  	public final static Integer INDEX_5 = new Integer(5);
24  
25  	public final static int NB_FILES_MAX = 1000;
26  
27  }