예제 #1
0
 /** Build the UI of the ProcessFrame with the data of the processUIData. */
 private void buildUI() {
   // Adds to the tabbedPane the 3 panels
   tabbedPane = new JTabbedPane();
   tabbedPane.addTab("Configuration", buildUIConf(processExecutionData));
   tabbedPane.addTab("Information", buildUIInfo(processExecutionData));
   tabbedPane.addTab("Execution", buildUIExec(processExecutionData));
   this.add(tabbedPane, BorderLayout.CENTER);
 }