blob: 277eed2d9ac9908465faa6d10e36aa321d03abd9 [file] [log] [blame]
/**
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
**/
package org.eclipse.egf.core.fcore;
import org.eclipse.egf.common.helper.ExtensionPointHelper;
import org.eclipse.egf.core.EGFCorePlugin;
/**
* Defines all constants related to a Fcore into extension point
* declaration.
*/
public interface IPlatformFcoreConstants {
/**
* Define a constant for the Fcore extension-point id.
*/
public static final String FCORE_EXTENSION_POINT_ID = "fcore"; //$NON-NLS-1$
/**
* Define a constant for the Fcore extension-point id as a fully
* qualified id.
*/
public static final String FULLY_QUALIFIED_EXTENSION_POINT_ID = ExtensionPointHelper.getExtensionPointId(EGFCorePlugin.getDefault().getPluginID(), FCORE_EXTENSION_POINT_ID);
/**
* Define a constant for the Fcore extension-point child.
*/
static final String FCORE_EXTENSION_CHILD = FCORE_EXTENSION_POINT_ID;
/**
* Define a constant for the 'id' attribute.
*/
public static final String FCORE_ATT_ID = "id"; //$NON-NLS-1$
/**
* Define a constant for the Fcore file extension.
*/
public static final String FCORE_FILE_EXTENSION = "fcore"; //$NON-NLS-1$
}