# HG changeset patch # User stechong # Date 1247072578 18000 # Node ID 979e44f9ba4227fd977c6d93d263ebfa6c3f0c71 # Parent c9e7d55745c833d41c516a9ad11e448f80c96d8d Added missing @since tags; fix for Bug 9220. diff -r c9e7d55745c8 -r 979e44f9ba42 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISBVCatalog.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISBVCatalog.java Wed Jul 08 12:02:00 2009 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISBVCatalog.java Wed Jul 08 12:02:58 2009 -0500 @@ -18,6 +18,7 @@ * This is a catalog of all the .VAR (Symbian Binary Variation) files detected for a given SDK. * * @noimplement This interface is not intended to be implemented by clients. + * @since 2.0 */ public interface ISBVCatalog { /** diff -r c9e7d55745c8 -r 979e44f9ba42 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISBVPlatform.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISBVPlatform.java Wed Jul 08 12:02:00 2009 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISBVPlatform.java Wed Jul 08 12:02:58 2009 -0500 @@ -27,6 +27,7 @@ * built-in platforms (like ARMV5). * * @noimplement This interface is not intended to be implemented by clients. + * @since 2.0 */ public interface ISBVPlatform { /** diff -r c9e7d55745c8 -r 979e44f9ba42 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISymbianBuildContext.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISymbianBuildContext.java Wed Jul 08 12:02:00 2009 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISymbianBuildContext.java Wed Jul 08 12:02:58 2009 -0500 @@ -45,6 +45,7 @@ /** * DEFAULT suffix to use for components that are specified as variant, but don't buid as variants. For example, plain ARMV5, when specified as * as a FEATUREVARIANT, will build as ARMV5.DEFAULT + * @since 2.0 */ public static final String DEFAULT_VARIANT = "DEFAULT"; @@ -74,6 +75,7 @@ * For example, a build platform name of "armv5.myvariant" will return "armv5". * @return The base platform string. * @see isSymbianBinaryVariation() + * @since 2.0 */ public String getBasePlatformForVariation(); @@ -131,12 +133,14 @@ * For platforms that are building with Symbian Binary Variation, this suffix will be included in the configuration name * For example, if you are building variant armv5.product1, then this will return "product1" string. * @return The name of the Symbian Binary Variation, or an empy String if the configuration is not a variation. + * @since 2.0 */ public String getBuildVariationName(); /** * Is the current build context building as a Symbian Binary Variation? Not to be confused with BSF. * @return true if this is a binary variant build + * @since 2.0 */ public boolean isSymbianBinaryVariation(); } diff -r c9e7d55745c8 -r 979e44f9ba42 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISymbianSDK.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISymbianSDK.java Wed Jul 08 12:02:00 2009 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISymbianSDK.java Wed Jul 08 12:02:58 2009 -0500 @@ -364,18 +364,21 @@ /** * Get the Symbian Binary Variation (SBV) catalog for the SDK. + * @since 2.0 */ ISBVCatalog getSBVCatalog(); /** * Tells whether or not the plug-in installer has sniffed this SDK for eclipse plug-ins to install. * @return true if the SDK was scanned. + * @since 2.0 */ boolean isPreviouslyScanned(); /** * Set flag to tell whether or not the SDK was scanned for eclipse plugins to install. * @param wasScanned was the SDK scanned for plugins? + * @since 2.0 */ void setPreviouslyScanned(boolean wasScanned);