core/com.nokia.carbide.cpp.featureTracker/src/com/nokia/carbide/cpp/internal/api/featureTracker/IFeatureUseTracker.java
changeset 1896 ab1b50f8668c
parent 0 fb279309251b
child 1899 d1e402149e7f
--- a/core/com.nokia.carbide.cpp.featureTracker/src/com/nokia/carbide/cpp/internal/api/featureTracker/IFeatureUseTracker.java	Thu Aug 26 13:36:24 2010 -0500
+++ b/core/com.nokia.carbide.cpp.featureTracker/src/com/nokia/carbide/cpp/internal/api/featureTracker/IFeatureUseTracker.java	Thu Aug 26 14:51:35 2010 -0500
@@ -21,14 +21,9 @@
 public interface IFeatureUseTracker {
 	
 	/**
-	 * Start using the feature (a.k.a. 'checkout')
-	 * @param featureName - The string of the feature to be used
+	 * Track the usage of the given feature
+	 * @param featureName the name of the feature being used
+	 * @since 3.0
 	 */
-	public void startUsingFeature(String featureName);
-	
-	/**
-	 * Called after 'startUsingFeature' once a feature is no longer being used
-	 * @param featureName - The string of the feature being used
-	 */
-	public void stopUsingFeature(String featureName);
+	public void useFeature(String featureName);
 }