186187188189190191192
JPanel buttonPanel = new JPanel(); buttonPanel.add(lunchButton); buttonPanel.add(closeButton); this.dialog = new XBayaDialog(this.engine, "Amazon EC2 Launcher", mainPanel, buttonPanel); }
223224225226227228229230
JPanel buttonPanel = new JPanel(); buttonPanel.add(okButton); buttonPanel.add(cancelButton); this.dialog = new XBayaDialog(this.engine, "Launch workflow", mainPanel, buttonPanel); this.dialog.setDefaultButton(okButton); }
144145146147148149150
JPanel buttonPanel = new JPanel(); buttonPanel.add(refreshButton); buttonPanel.add(okButton); buttonPanel.add(cancelButton); this.dialog = new XBayaDialog(this.engine, "Amazon S3 Input Chooser", scrollPane, buttonPanel); }
175176177178179180181182183184185
break; case APPLICATION: title="Application Descriptions"; break; } this.dialog = new XBayaDialog(this.engine, title, infoPanel, buttonPanel); this.dialog.setDefaultButton(editButton); editButton.setEnabled(false); removeButton.setEnabled(false); loadDescriptors(); }
153154155156157158159160
JPanel buttonPanel = new JPanel(); buttonPanel.add(okButton); buttonPanel.add(cancelButton); this.dialog = new XBayaDialog(this.engine, "ForEach Configuration", gridPanel, buttonPanel); this.dialog.setDefaultButton(okButton); }
151152153154155156157158
JPanel buttonPanel = new JPanel(); buttonPanel.add(okButton); buttonPanel.add(cancelButton); this.dialog = new XBayaDialog(this.engine, "Receive Configuration", gridPanel, buttonPanel); this.dialog.setDefaultButton(okButton); }
131132133134135136137138
} }); JPanel buttonPanel = new JPanel(); buttonPanel.add(okButton); this.dialog = new XBayaDialog(this.engine, this.node.getName(), infoPanel, buttonPanel); this.dialog.setDefaultButton(okButton); }
142143144145146147148149
hide(); } }); buttonPanel.add(this.closeButton); this.dialog = new XBayaDialog(this.engine, "Register Description Through File", infoPanel, buttonPanel); this.dialog.setDefaultButton(this.closeButton); }
100101102103104105106107108
JPanel buttonPanel = new JPanel(); buttonPanel.add(sendButton); buttonPanel.add(cancelButton); this.dialog = new XBayaDialog(this.engine, "Deploy workflow to ODE and Registry", mainPanel, buttonPanel); this.dialog.setDefaultButton(sendButton); }
125126127128129130131132
} }); JPanel buttonPanel = new JPanel(); buttonPanel.add(okButton); this.dialog = new XBayaDialog(this.engine, "Notification", infoPanel, buttonPanel); this.dialog.setDefaultButton(okButton); }