Java tutorial
// ============================================================================ // // Copyright (C) 2006-2018 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have received a copy of the agreement // along with this program; if not, write to Talend SA // 9 rue Pages 92150 Suresnes, France // // ============================================================================ package org.talend.designer.esb.runcontainer.ui.dialog; import java.lang.reflect.InvocationTargetException; import org.eclipse.jface.dialogs.ProgressMonitorDialog; import org.eclipse.jface.operation.IRunnableWithProgress; import org.eclipse.swt.widgets.Shell; public class RunClientProgressDialog extends ProgressMonitorDialog { public RunClientProgressDialog(Shell parent) { super(parent); } /* * (non-Javadoc) * * @see org.eclipse.jface.dialogs.ProgressMonitorDialog#run(boolean, boolean, * org.eclipse.jface.operation.IRunnableWithProgress) */ @Override public void run(boolean fork, boolean cancelable, IRunnableWithProgress runnable) throws InvocationTargetException, InterruptedException { // TODO Auto-generated method stub super.run(fork, cancelable, runnable); } }