Package de.ambits.csvmaster.service

Examples of de.ambits.csvmaster.service.ICsvService.addColumn()


  @Override
  public Object execute(ExecutionEvent event) throws ExecutionException {
    InputDialog inputDialog = new InputDialog(Display.getCurrent().getActiveShell(), "New Column", "Enter name for the new column", "", null);
        if (inputDialog.open() == Window.OK) {
          ICsvService service = new CsvService();
          service.addColumn(inputDialog.getValue(), event);
        }

    return null;
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.