Package org.openetcs.datadictionary.transform.ui

Examples of org.openetcs.datadictionary.transform.ui.TransformationDialog.open()


  public Object execute(ExecutionEvent event) throws ExecutionException {

    // open file dialog
    Shell shell = HandlerUtil.getActiveWorkbenchWindowChecked(event).getShell();   
    final TransformationDialog dialog = new TransformationDialog(shell);   
    dialog.open();
    final String[] files = dialog.getFiles();
       
    if (files != null && files.length > 0) {
      Job job = new Job("Generating DataDictionary") {
        protected IStatus run(IProgressMonitor monitor) {
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.