blob: 7052b18872c1398f25c62086cdb08eb37f5e4c5c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.internal.p2.ui;
import java.util.EventObject;
/**
* Event used to signify that a batch change is about
* to begin. We should ignore listeners until it is
* done.
*
* @since 3.4
*/
public class BatchChangeCompleteEvent extends EventObject {
private static final long serialVersionUID = -4513769756968621852L;
/**
* Construct a new instance of this event.
* @param source the source of the event
*/
public BatchChangeCompleteEvent(Object source) {
super(source);
}
}