Add missing @noimplement tag to ISDKManager, which was already documented in release notes
--- 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();
}