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
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.util;
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$
18 public final static String EXTENSION_PHP = "PHP"; //$NON-NLS-1$
20 // public final static String SUFFIX_STRING_class = "." + EXTENSION_class;
22 // public final static String SUFFIX_STRING_CLASS = "." + EXTENSION_CLASS;
24 public final static String SUFFIX_STRING_php = "." + EXTENSION_php; //$NON-NLS-1$
26 public final static String SUFFIX_STRING_PHP = "." + EXTENSION_PHP; //$NON-NLS-1$
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();
34 public final static char[] SUFFIX_PHP = SUFFIX_STRING_PHP.toCharArray();
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$
41 // public final static String SUFFIX_STRING_jar = "." + EXTENSION_jar;
43 // public final static String SUFFIX_STRING_JAR = "." + EXTENSION_JAR;
45 // public final static String SUFFIX_STRING_zip = "." + EXTENSION_zip;
47 // public final static String SUFFIX_STRING_ZIP = "." + EXTENSION_ZIP;
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();