blob: d974a2aa03616634e6edb96d2211aedca5f1ddde [file] [log] [blame]
/*
* Copyright (c) 2015 Eike Stepper (Berlin, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.oomph.setup.internal.sync;
import org.eclipse.oomph.setup.internal.sync.Snapshot.WorkingCopy;
import org.eclipse.oomph.setup.sync.SyncAction;
import java.util.Map;
/**
* @author Eike Stepper
*/
public class SynchronizerAdapter implements SynchronizerListener
{
public SynchronizerAdapter()
{
}
public void syncStarted(Synchronization synchronization)
{
}
public void workingCopyCreated(Synchronization synchronization, WorkingCopy workingCopy)
{
}
public void actionsComputed(Synchronization synchronization, Map<String, SyncAction> actions)
{
}
public void actionResolved(Synchronization synchronization, SyncAction action, String id)
{
}
public void commitStarted(Synchronization synchronization)
{
}
public void commitFinished(Synchronization synchronization, Throwable t)
{
}
public void lockReleased(Synchronization synchronization)
{
}
}