blob: 4ac694a1c92010ab3f6245ac6c839246c960e150 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Ericsson Research Canada
*
* 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
*
* Description:
*
* This interface is used to inject the dialog used to select participants to unassign
*
* Contributors:
* Sebastien Dubois - Created for Mylyn Review R4E project
*
******************************************************************************/
package org.eclipse.mylyn.reviews.r4e.ui.internal.dialogs;
import java.util.List;
import org.eclipse.mylyn.reviews.r4e.core.model.R4EParticipant;
/**
* @author lmcdubo
* @version $Revision: 1.0 $
*/
public interface IParticipantUnassignDialog {
/**
* Method create.
*/
void create();
/**
* Method open.
*
* @return int
*/
int open();
/**
* Method close.
*
* @return boolean
*/
boolean close();
/**
* Method getParticipants.
*
* @return List<R4EParticipant>
*/
List<R4EParticipant> getParticipants();
}