# HG changeset patch # User Ed Swartz # Date 1260200224 21600 # Node ID 404bbc8b47b4b9696b30262d9600a50903d64975 # Parent 5ff506b20613a63673dc1a5c28a04ee47474c2be Add missing @noimplement tag to ISDKManager, which was already documented in release notes diff -r 5ff506b20613 -r 404bbc8b47b4 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISDKManager.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISDKManager.java Fri Dec 04 16:32:30 2009 -0600 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISDKManager.java Mon Dec 07 09:37:04 2009 -0600 @@ -23,7 +23,7 @@ /** * Interface to Symbian OS SDK's. Use this interface to get the list of all SDKs. * @see ISymianSDK - * + * @noimplement */ public interface ISDKManager { @@ -182,12 +182,14 @@ * Get the version of SBSv2 installed on the PATH. * @param boolean forceScan - forceScan even if version already determined. * @return A Verion object of the installed SBSv2 version. Version will be 0.0.0 if not found. + * @since 2.3 */ public Version getSBSv2Version(boolean forceScan); /** * Retrieve the minimum supported version of SBSv2 for Carbide.c++ * @return Version + * @since 2.3 */ public Version getMinimumSupportedSBSv2Version(); }