blob: 2f1546cf6c2a49c4a09d001c4daa75924ed78ce1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 CEA LIST.
* 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:
* Erwan Mahe (CEA LIST) erwan.mahe@cea.fr - Initial API and implementation
*******************************************************************************/
package org.eclipse.efm.ui.views.utils;
public interface ILaunchConfigurationGUIelement {
public void setMessage(String message);
public void setWarningMessage(String warningmessage);
public void setErrorMessage(String errormessage);
public void updateGUI();
public void scheduleUpdateJob();
}