Package com.subgraph.vega.internal.ui.macros.macrodialog

Examples of com.subgraph.vega.internal.ui.macros.macrodialog.MacroItemSelectionDialog


  private SelectionListener createAddItemButtonSelectionListener() {
    return new SelectionAdapter() {
      @Override
      public void widgetSelected(SelectionEvent e) {
        MacroItemSelectionDialog dialog = new MacroItemSelectionDialog(parentComposite.getShell());
        if (dialog.open() == IDialogConstants.OK_ID) {
          List<IRequestLogRecord> selectionList = dialog.getSelectionList();
          for (Iterator<IRequestLogRecord> iter = selectionList.iterator(); iter.hasNext();) {
            try {
              macro.createMacroItem(iter.next());
            } catch (URISyntaxException ex) {
              ErrorDialog.displayError(getShell(), "An unexpected error occurred while processing the URI");
View Full Code Here

TOP

Related Classes of com.subgraph.vega.internal.ui.macros.macrodialog.MacroItemSelectionDialog

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.