blob: 654fddc737705401eb326dfe51a5a37eef24cdb5 [file] [log] [blame]
package org.eclipse.e4.demo.simpleide.services;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.swt.widgets.Shell;
public interface IExportResourceService {
public String getCategoryName();
public String getIconURI();
public String getLabel();
public void exportResource(Shell shell, IEclipseContext context);
}