/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine.chooser; import org.eclipse.che.api.core.model.machine.Machine; import org.eclipse.che.ide.api.mvp.View; import java.util.List; /** * Contract for the view of the machine chooser. * * @author Artem Zatsarynnyi */ public interface MachineChooserView extends View<MachineChooserView.ActionDelegate> { /** Show the view. */ void show(); /** Close the view. */ void close(); /** Sets the machines to display in the view. */ void setMachines(List<? extends Machine> machines); /** The action delegate for this view. */ interface ActionDelegate { /** Called when machine is selected. */ void onMachineSelected(Machine machine); /** Called when machine selection has been canceled. Note that view will be already closed. */ void onCanceled(); } }