KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > build > Constants


1 /**********************************************************************
2  * Copyright (c) 2006 Eclipse Foundation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * Gunnar Wagenknecht - Initial API and implementation
10  * IBM Corporation - Initial API and implementation
11  **********************************************************************/

12  package org.eclipse.pde.build;
13
14 /**
15  * Constants for the files usually manipulated by the fetch factory.
16  * @since 3.2
17  */

18 public interface Constants {
19     /** Constant for the string <code>feature.xml</code> */
20     public final static String JavaDoc FEATURE_FILENAME_DESCRIPTOR = "feature.xml"; //$NON-NLS-1$
21

22     /** Constant for the string <code>fragment.xml</code> */
23     public final static String JavaDoc FRAGMENT_FILENAME_DESCRIPTOR = "fragment.xml"; //$NON-NLS-1$
24

25     /** Constant for the string <code>plugin.xml</code> */
26     public final static String JavaDoc PLUGIN_FILENAME_DESCRIPTOR = "plugin.xml"; //$NON-NLS-1$
27

28     /** Constant for the string <code>META-INF/MANIFEST.MF</code> */
29     public final static String JavaDoc BUNDLE_FILENAME_DESCRIPTOR = "META-INF/MANIFEST.MF"; //$NON-NLS-1$
30
}
31
Popular Tags