Examples of XBayaDialog


Examples of edu.indiana.extreme.xbaya.gui.XBayaDialog

      }
    });
    JPanel buttonPanel = new JPanel();
    buttonPanel.add(okButton);

    this.dialog = new XBayaDialog(this.engine, this.node.getName(),
        infoPanel, buttonPanel);
    this.dialog.setDefaultButton(okButton);
  }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.XBayaDialog

        JPanel buttonPanel = new JPanel();
        buttonPanel.add(okButton);
        buttonPanel.add(cancelButton);

        this.dialog = new XBayaDialog(this.engine, "Invoke  workflow",
                mainPanel, buttonPanel);
        this.dialog.setDefaultButton(okButton);
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.gui.XBayaDialog

        buttonPanel.add(refreshButton);
        buttonPanel.add(launchButton);
        buttonPanel.add(terminateButton);
        buttonPanel.add(closeButton);

        this.dialog = new XBayaDialog(this.engine, "Amazon EC2 Managment Console", mainPanel, buttonPanel);
        this.dialog.getDialog().setPreferredSize(new Dimension(WIDTH, HEIGHT));
        this.dialog.setDefaultButton(closeButton);

    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.XBayaDialog

        GridPanel buttonPanel = new GridPanel();
        buttonPanel.add(okButton);
        buttonPanel.add(cancelButton);
        buttonPanel.getSwingComponent().setBorder(BorderFactory.createEtchedBorder());

        this.dialog = new XBayaDialog(this.engine.getGUI(), "Configure Airavata Registry", infoPanel, buttonPanel);
        this.dialog.setDefaultButton(okButton);
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.XBayaDialog

                hide();
            }
        });
        buttonPanel.add(cancelButton);

        this.dialog = new XBayaDialog(this.engine.getGUI(), "Load a Workflow from the Registry", mainPanel, buttonPanel);
        this.dialog.setDefaultButton(this.okButton);
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.XBayaDialog

        JPanel buttonPanel = new JPanel();
        buttonPanel.add(okButton);
        buttonPanel.add(cancelButton);

        this.dialog = new XBayaDialog(this.engine.getGUI(), "Launch  workflow", mainPanel, buttonPanel);
        this.dialog.setDefaultButton(okButton);
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.XBayaDialog

        JPanel buttonPanel = new JPanel();
        buttonPanel.add(okButton);
        buttonPanel.add(cancelButton);

        if (this.owner == null) {
            this.dialog = new XBayaDialog(this.engine.getGUI(), "Security Credentials", mainPanel, buttonPanel);
        } else {
            this.dialog = new XBayaDialog(this.owner, "Security Credentials", mainPanel, buttonPanel);
        }
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.XBayaDialog

        JPanel buttonPanel = new JPanel();
        buttonPanel.add(okButton);
        buttonPanel.add(cancelButton);

        this.dialog = new XBayaDialog(this.engine.getGUI(), "Invoke workflow", mainPanel, buttonPanel);
        this.dialog.setDefaultButton(okButton);
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.XBayaDialog

        JPanel buttonPanel = new JPanel();
        buttonPanel.add(invokeButton);
        buttonPanel.add(cancelButton);

        this.dialog = new XBayaDialog(this.engine.getGUI(), "Deploy Workflow", mainPanel, buttonPanel);
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.XBayaDialog

            }
        });
        JPanel buttonPanel = new JPanel();
        buttonPanel.add(okButton);

        this.dialog = new XBayaDialog(this.xbayaGUI, "Notification", infoPanel, buttonPanel);
        this.dialog.setDefaultButton(okButton);
    }
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.