uidesigner/com.nokia.sdt.test.componentlibrary/components/testing/conditionalExtensions.js
author dadubrow
Tue, 06 Jul 2010 11:42:41 -0500
branchRCL_2_4
changeset 1575 8ced3afefe5b
parent 0 fb279309251b
permissions -rw-r--r--
Bug 11444 and bug 11599 - for non x86, allow non-exe executables and for attach don't ask for install file

/*
* Copyright (c) 2009 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.
*
* Contributors:
*
* Description: 
*
*/
function ConditionalWithExtensionsPropertyExtender() {
}

	// Return instances that may provide extension properties
	// The target instance parameter is the instance to receive the
	// additional properties
ConditionalWithExtensionsPropertyExtender.prototype.getPropertyExtenders = function(instance, targetInstance) {
	return [instance, instance.parent];
}
	
ConditionalWithExtensionsPropertyExtender.prototype.getExtensionSetNames = function(instance, targetInstance) {
//println("get extension:"+instance.parent.properties.controlConditionalExtensions);
	if (instance.parent.properties.controlConditionalExtensions)
		return [ "ifControl" ];
	return null;
}