/******************************************************************************* * 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.ext.java.client.command; import com.google.inject.ImplementedBy; import org.eclipse.che.ide.api.mvp.View; /** * The view of {@link JavaCommandPagePresenter}. * * @author Valeriy Svydenko */ @ImplementedBy(JavaCommandPageViewImpl.class) public interface JavaCommandPageView extends View<JavaCommandPageView.ActionDelegate> { /** Returns project. */ String getProject(); /** Sets project. */ void setProject(String project); /** Returns the path to main class. */ String getMainClass(); /** Sets the path to main class. */ void setMainClass(String mainClass); /** Returns command line. */ String getCommandLine(); /** Sets command line. */ void setCommandLine(String commandLine); /** Action handler for the view actions/controls. */ interface ActionDelegate { /** Called when 'Choose Main Class' button has been clicked. */ void onAddMainClassBtnClicked(); /** Called when command line has been changed. */ void onCommandLineChanged(); } }