alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*******************************************************************************
 * Copyright (c) 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.pde.api.tools.internal;

/**
 * Constants used by API tools core plugin
 * 
 * @since 1.0.0
 */
public interface IApiCoreConstants {

	/**
	 * Constant representing the name of a component XML file.
	 * Value is: <code>component.xml
	 */
	public static final String COMPONENT_XML_NAME = "component.xml"; //$NON-NLS-1$
	/**
	 * Constant representing the value for UTF-8 encoding.
	 * Value is: <code>UTF-8
	 */
	public static final String UTF_8 = "UTF-8"; //$NON-NLS-1$
	/**
	 * Constant representing the name of a plugin.xml file.
	 * Value is: <code>plugin.xml
	 */
	public static final String PLUGIN_XML_NAME = "plugin.xml"; //$NON-NLS-1$
	/**
	 * Constant representing the name of a fragment.xml file.
	 * Value is: <code>fragment.xml
	 */
	public static final String FRAGMENT_XML_NAME = "fragment.xml"; //$NON-NLS-1$
	/**
	 * Constant representing the name of API description XML file.
	 * Value is <code>.api_description
	 */
	public static final String API_DESCRIPTION_XML_NAME = ".api_description"; //$NON-NLS-1$
	/**
	 * Constant representing the name of the API filters XML file.
	 * Value is <code>.api_filters
	 */
	public static final String API_FILTERS_XML_NAME = ".api_filters"; //$NON-NLS-1$
	/**
	 * Constant representing the name of the source bundle manifest header.
	 * Value is: <code>Eclipse-SourceBundle
	 */
	public static final String ECLIPSE_SOURCE_BUNDLE = "Eclipse-SourceBundle"; //$NON-NLS-1$

}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.