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

Examples of com.subgraph.vega.internal.ui.macros.macrodialog.MacroItemSelectionDialog.open()


  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) {
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.