blob: d19ba5b9afba8993cc5700f5423cf5fc57b4c9d0 [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.equinox.p2.engine;
public class BeginOperationEvent extends TransactionEvent {
private static final long serialVersionUID = 6389318375739324865L;
public BeginOperationEvent(Profile profile, PhaseSet phaseSet, Operand[] deltas, Engine engine) {
super(profile, phaseSet, deltas, engine);
}
}