blob: 43ad69f9a9d07192e2e28aa63f27e0a3e2112318 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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.rdt.sync.ui;
import org.eclipse.swt.widgets.Composite;
/**
* Must be implemented by extensions to the syncronizeParticipant extension
* point.
*
*/
public interface ISynchronizeParticipant {
/**
* Create a control to configure a synchronize provider
*
* @param parent
*/
public void createConfigurationArea(final Composite parent);
}