Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AakashSasikumar authored Dec 22, 2016
1 parent 48a6232 commit e4bca93
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions GUI/src/TextAreaAndProgressBar.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@ public class TextAreaAndProgressBar extends JPanel {
add(new JScrollPane(output), BorderLayout.NORTH);
add(progressBar, BorderLayout.SOUTH);


}
static void addText(String text){
output.append(text+"\n");
}
static String returnText(){
return output.getText();
}

}

0 comments on commit e4bca93

Please sign in to comment.