Added for bug fix 10681. Merged from default. RCL_2_4
authortimkelly
Sun, 14 Feb 2010 20:52:26 -0600
branchRCL_2_4
changeset 951 9e8d63ac5a58
parent 950 6773165abc05
child 952 9dba0e2abcff
child 953 68b6a294ab01
child 967 885b827031ab
Added for bug fix 10681. Merged from default.
core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/ISDKManagerLoadedHook.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/ISDKManagerLoadedHook.java	Sun Feb 14 20:52:26 2010 -0600
@@ -0,0 +1,27 @@
+/*
+* Copyright (c) 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.sdk;
+
+/**
+ * Convenience interface for extension-point clients to know when the Carbide Symbian SDK plug-in has loaded.
+ */
+public interface ISDKManagerLoadedHook {
+	
+	/**
+	 * Feature to notify that SDKs are loaded the first time.
+	 * For subsequent SDK scan notifications see {@link com.nokia.carbide.cdt.builder.project.ICarbideConfigurationChangedListener}
+	 */
+	public void symbianSDKManagerLoaded();
+	
+	
+}