-
Notifications
You must be signed in to change notification settings - Fork 2
/
ShowProcessDetails.java
executable file
·54 lines (38 loc) · 1.6 KB
/
ShowProcessDetails.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
public class ShowProcessDetails extends WizardPanel {
/** Creates new form InitEmbedProcess */
public ShowProcessDetails(String details) {
super(details);
initComponents();
}
public void setDisplayText(String text){
embedLabel.setText(text);
}
public void addOutputLine(String line){
outputTextArea.append(line+"\n");
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
private void initComponents() {//GEN-BEGIN:initComponents
outputScrollPane = new javax.swing.JScrollPane();
outputTextArea = new javax.swing.JTextArea();
embedLabel = new javax.swing.JLabel();
setLayout(new java.awt.BorderLayout());
outputTextArea.setEditable(false);
outputScrollPane.setViewportView(outputTextArea);
add(outputScrollPane, java.awt.BorderLayout.CENTER);
embedLabel.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
embedLabel.setText("Embedding Data In Image...");
add(embedLabel, java.awt.BorderLayout.NORTH);
}//GEN-END:initComponents
public boolean doValidation() {
return true;
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JTextArea outputTextArea;
private javax.swing.JScrollPane outputScrollPane;
private javax.swing.JLabel embedLabel;
// End of variables declaration//GEN-END:variables
}