/******************************************************************************* * 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.command.type.custom; import com.google.inject.ImplementedBy; import org.eclipse.che.ide.api.mvp.View; /** * The view of {@link CustomPagePresenter}. * * @author Artem Zatsarynnyi */ @ImplementedBy(CustomPageViewImpl.class) public interface CustomPageView extends View<CustomPageView.ActionDelegate> { /** Returns value of the 'Command line' field. */ String getCommandLine(); /** Sets value of the 'Command line' field. */ void setCommandLine(String commandLine); /** Action handler for the view actions/controls. */ interface ActionDelegate { /** Called when value of the 'Command line' field has been changed. */ void onCommandLineChanged(); } }