The System.out window is in a Java window. Each menu button pressed prints a line to a Java window (not the terminal, I'm sorry...)
Here is the actionPerformed class (part of it):
public void actionPerformed(ActionEvent event)
{
System.out.println("Item: " + event.getActionCommand());
// File Menu Controls
if (event.getActionCommand().equals("New"))
{
runNew();
}
and runNew() is this:
private void runNew()
{
System.out.print("Enter the depth: ");
int depth = scan.nextInt();
System.out.println();
System.out.print("Enter the width: ");
int width = scan.nextInt();
System.out.println();
System.out.print("Enter the fox's creation probability (0.x): ");
double fox = scan.nextDouble();
System.out.println();
System.out.print("Enter the rabbit's creation probability (0.x): ");
double rabbit = scan.nextDouble();
System.out.println();
new FoxGui(depth, width, fox, rabbit);
}
I can print to the Java window (which I call the terminal, I suppose it isnt?) but I can't get the keyboard to focus on it to input data. Also, I dunno how to print out a stackflow error from BlueJ...
Edit: I suppose it is the terminal window. The label of the window is BlueJ: Terminal Window.
When I go back to it to try to get some input, The JFrames lock up and I can't do anything to them. Maybe that's a better way to explain it.