Package de.ambits.csvmaster.ui

Examples of de.ambits.csvmaster.ui.CsvContentProvider


public class CsvRemoveColumnHandler extends AbstractHandler {

  @Override
  public Object execute(ExecutionEvent event) throws ExecutionException {
    ICsvService service = new CsvService();
    ListSelectionDialog dlg = new ListSelectionDialog(Display.getCurrent().getActiveShell(), service.getTableHeaders(event), new CsvContentProvider(), new LabelProvider(), "Select the columns to delete.");
    dlg.setTitle("Delete columns");
        if (dlg.open() == Window.OK) {
          service.deleteColumn(dlg.getResult(), event);
        }
    return null;
View Full Code Here

TOP

Related Classes of de.ambits.csvmaster.ui.CsvContentProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.