blob: a1b891650f55d80fc83c386f17b8945422aa5e6c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.rtsystem.events;
import org.eclipse.ptp.utils.core.RangeSet;
public abstract class AbstractRuntimeRemoveEvent implements IRuntimeRemoveEvent {
private RangeSet elementIds;
public AbstractRuntimeRemoveEvent() {
this.elementIds = null;
}
public AbstractRuntimeRemoveEvent(RangeSet elementIds) {
this.elementIds = elementIds;
}
/* (non-Javadoc)
* @see org.eclipse.ptp.rtsystem.events.IRuntimeRemoveEvent#getElementIds()
*/
public RangeSet getElementIds() {
return elementIds;
}
}