# HG changeset patch # User timkelly # Date 1266202346 21600 # Node ID 9e8d63ac5a581512134ddd15350b1fd12788a5e0 # Parent 6773165abc05dad6984c5aa90ac44cd3bb0560a3 Added for bug fix 10681. Merged from default. diff -r 6773165abc05 -r 9e8d63ac5a58 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(); + + +}