should be using JavaSE-1.6 VM, and .classpath, codegen.targetPlatform, compliance and source should also all be 1.6;
making these changes requires the project to have custom compiler settings in order to continue to import XPathAPI
from its original location com.sun.org.apache.xpath.internal, which is still in JavaSE-1.6 rt.jar .
/*
* 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);
}