blob: b235d5d506fa31dc942a9c19975f143ccf311880 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.internal.builders;
import java.util.Map;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
/**
* Test builder that is associated with the snow nature.
*/
public class SnowBuilder extends TestBuilder {
private static SnowBuilder singleton;
private boolean wasDeltaNull = false;
public static final String BUILDER_NAME = "org.eclipse.core.tests.resources.snowbuilder";
public static final String SNOW_BUILD_EVENT = "SnowBuild";
/**
* Captures the builder instantiated through reflection
*/
public SnowBuilder() {
if (singleton != null) {
//copy interesting data from old singleton
// expectedEvents.addAll(singleton.expectedEvents);
// actualEvents.addAll(singleton.actualEvents);
// wasDeltaNull = singleton.wasDeltaNull;
}
singleton = this;
}
/**
* Returns the singleton instance
*/
public static SnowBuilder getInstance() {
if (singleton == null) {
new SnowBuilder();
}
return singleton;
}
/**
* @see InternalBuilder#build(int, Map, IProgressMonitor)
*/
@Override
protected IProject[] build(int kind, Map<String, String> args, IProgressMonitor monitor) throws CoreException {
wasDeltaNull = getDelta(getProject()) == null;
return super.build(kind, args, monitor);
}
public boolean wasDeltaNull() {
return wasDeltaNull;
}
}