01: /**********************************************************************
02: * Copyright (c) 2006 Eclipse Foundation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * Gunnar Wagenknecht - Initial API and implementation
10: * IBM Corporation - Initial API and implementation
11: **********************************************************************/package org.eclipse.pde.build;
12:
13: /**
14: * Constants for the files usually manipulated by the fetch factory.
15: * @since 3.2
16: */
17: public interface Constants {
18: /** Constant for the string <code>feature.xml</code> */
19: public final static String FEATURE_FILENAME_DESCRIPTOR = "feature.xml"; //$NON-NLS-1$
20:
21: /** Constant for the string <code>fragment.xml</code> */
22: public final static String FRAGMENT_FILENAME_DESCRIPTOR = "fragment.xml"; //$NON-NLS-1$
23:
24: /** Constant for the string <code>plugin.xml</code> */
25: public final static String PLUGIN_FILENAME_DESCRIPTOR = "plugin.xml"; //$NON-NLS-1$
26:
27: /** Constant for the string <code>META-INF/MANIFEST.MF</code> */
28: public final static String BUNDLE_FILENAME_DESCRIPTOR = "META-INF/MANIFEST.MF"; //$NON-NLS-1$
29: }
|