Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / util / SuffixConstants.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.util;
12
13 public interface SuffixConstants {
14         // public final static String EXTENSION_class = "class"; //$NON-NLS-1$
15         // public final static String EXTENSION_CLASS = "CLASS"; //$NON-NLS-1$
16         public final static String EXTENSION_php = "php"; //$NON-NLS-1$
17
18         public final static String EXTENSION_PHP = "PHP"; //$NON-NLS-1$
19
20         // public final static String SUFFIX_STRING_class = "." + EXTENSION_class;
21         // //$NON-NLS-1$
22         // public final static String SUFFIX_STRING_CLASS = "." + EXTENSION_CLASS;
23         // //$NON-NLS-1$
24         public final static String SUFFIX_STRING_php = "." + EXTENSION_php; //$NON-NLS-1$
25
26         public final static String SUFFIX_STRING_PHP = "." + EXTENSION_PHP; //$NON-NLS-1$
27
28         // public final static char[] SUFFIX_class =
29         // SUFFIX_STRING_class.toCharArray();
30         // public final static char[] SUFFIX_CLASS =
31         // SUFFIX_STRING_CLASS.toCharArray();
32         public final static char[] SUFFIX_php = SUFFIX_STRING_php.toCharArray();
33
34         public final static char[] SUFFIX_PHP = SUFFIX_STRING_PHP.toCharArray();
35
36         // public final static String EXTENSION_jar = "jar"; //$NON-NLS-1$
37         // public final static String EXTENSION_JAR = "JAR"; //$NON-NLS-1$
38         // public final static String EXTENSION_zip = "zip"; //$NON-NLS-1$
39         // public final static String EXTENSION_ZIP = "ZIP"; //$NON-NLS-1$
40
41         // public final static String SUFFIX_STRING_jar = "." + EXTENSION_jar;
42         // //$NON-NLS-1$
43         // public final static String SUFFIX_STRING_JAR = "." + EXTENSION_JAR;
44         // //$NON-NLS-1$
45         // public final static String SUFFIX_STRING_zip = "." + EXTENSION_zip;
46         // //$NON-NLS-1$
47         // public final static String SUFFIX_STRING_ZIP = "." + EXTENSION_ZIP;
48         // //$NON-NLS-1$
49
50         // public final static char[] SUFFIX_jar = SUFFIX_STRING_jar.toCharArray();
51         // public final static char[] SUFFIX_JAR = SUFFIX_STRING_JAR.toCharArray();
52         // public final static char[] SUFFIX_zip = SUFFIX_STRING_zip.toCharArray();
53         // public final static char[] SUFFIX_ZIP = SUFFIX_STRING_ZIP.toCharArray();
54 }