blob: 8dc61d3a68080a6cdc496cb249031d8b11e9f114 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2010 QNX Software Systems 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:
* QNX Software Systems - Initial API and implementation
* Red Hat Inc. - Allow multiple targets
*******************************************************************************/
package org.eclipse.cdt.make.core;
import java.util.EventObject;
import org.eclipse.core.resources.IProject;
/**
* This class represents an event sent when the set of Make Target items
* in Make Targets View has changed.
*
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
*/
public class MakeTargetEvent extends EventObject {
private static final long serialVersionUID = 1L;
public static final int TARGET_ADD = 1;
public static final int TARGET_CHANGED = 2;
public static final int TARGET_REMOVED = 3;
public static final int PROJECT_ADDED = 4;
public static final int PROJECT_REMOVED = 5;
private IMakeTarget[] targets;
private int type;
/**
* @param source - the object on which the Event initially occurred.
* @param type - event type (e.g. TARGET_ADD, TARGET_CHANGED)
* @param target - make target affected
*/
public MakeTargetEvent(Object source, int type, IMakeTarget target) {
super(source);
this.type = type;
this.targets = new IMakeTarget[] { target };
}
/**
* @param source - the object on which the Event initially occurred.
* @param type - event type (e.g. TARGET_ADD, TARGET_CHANGED)
* @param targets - array of MakeTargets
*
* @since 7.0
*/
public MakeTargetEvent(Object source, int type, IMakeTarget[] targets) {
super(source);
this.type = type;
this.targets = new IMakeTarget[targets.length];
System.arraycopy(targets, 0, this.targets, 0, targets.length);
}
/**
* @param source - the object on which the Event initially occurred.
* @param type - event type (e.g. TARGET_ADD, TARGET_CHANGED)
* @param project - not used
*/
public MakeTargetEvent(Object source, int type, IProject project) {
super(source);
this.type = type;
}
public int getType() {
return type;
}
/**
* @return the first target (for compatibility with old method).
*
* @deprecated Use getTargets() instead.
*/
@Deprecated
public IMakeTarget getTarget() {
return targets[0];
}
/**
* @return MakeTargets passed in this event.
*
* @since 7.0
*/
public IMakeTarget[] getTargets() {
return targets;
}
}