core/com.nokia.carbide.cpp.featureTracker/src/com/nokia/carbide/cpp/internal/api/featureTracker/IFeatureUseTracker.java
author timkelly
Thu, 26 Aug 2010 20:49:15 -0500
changeset 1899 d1e402149e7f
parent 1896 ab1b50f8668c
permissions -rw-r--r--
add feature strings for new http feature tracker

/*
* Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
*/
package com.nokia.carbide.cpp.internal.api.featureTracker;

/**
 * Interface to use for clients implementing the 'featureUseTracker'
 * extension point
 * 
 * Any use should guarantee not to block.
 */
public interface IFeatureUseTracker {
	
	/**
	 * Track the usage of the given feature
	 * @param featureName the name of the feature being used
	 * @since 3.0
	 */
	public void useFeature(String featureName);
}