[Bug 9230] Get parent folder of rss/aif and not top level so we can still honor the index only build mmps pref + restore and deprecate original source root method since it was API and create a new one to use with pref behavior
/*
* Copyright (c) 2006 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 buildSimpleErrorStatus(errorString, params) {
statusBuilder = newStatusBuilder();
statusBuilder.add(IStatus.ERROR, errorString, params);
return statusBuilder.createStatus("", null);
}
function buildMultipleErrorStatus(header, errorString, params, status) {
statusBuilder = newStatusBuilder();
statusBuilder.add(status);
statusBuilder.add(IStatus.ERROR, errorString, params);
return statusBuilder.createStatus(header, null);
}
function buildSimpleWarningStatus(warningString, params) {
statusBuilder = newStatusBuilder();
statusBuilder.add(IStatus.WARNING, warningString, params);
return statusBuilder.createStatus("", null);
}