How to keep new Frame forming

90 Views Asked by At

I'm a beginner in JAVA. My Question is my GUI have one Button. If the Button is pressed it should print some texts on the GUI. But When I pressed the Button. It'll show a whole new Frame then show the texts. How can I do to keep it all in the same Frame and every time I pressed the button, there will be new texts popping up.

1.the whole GUI was built

package JuiceFactory;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class JuiceFactory extends JFrame{
    private CustomTextFeild customTextFeild;
    private CustomButton customButton;
    public JuiceFactory() {
        JFrame jf = new JFrame("Welcome to a Juice Factory");
        jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

        JPanel jPanel = new JPanel();
        jPanel.setLayout(new BorderLayout(5,5));
                   jPanel.setBorder(BorderFactory.createLineBorder(Color.GRAY,10));

        customTextFeild = new CustomTextFeild();
        customButton = new CustomButton();


        jPanel.add(customTextFeild,BorderLayout.CENTER);
        jPanel.add(customButton,BorderLayout.EAST);

        customButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                      new Juice();
            }
        });


        jf.setContentPane(jPanel);
        jf.setLocationRelativeTo(null);
        jf.pack();
        jf.setVisible(true);
    }
    public void printMessage(String Message){
        customTextFeild.addText(Message);
    }
}

2.JButton's preference

 class CustomButton extends JButton  {
    public static int Height = 20,Width=100;
    public CustomButton(){
        setOpaque(true);
        new JButton();
        setText("Order Juice");
    }
    public Dimension getPreferredSize(){
        return  (new Dimension(Width,Height)) ;
    }
}

3.JTextFeild preference

class CustomTextFeild extends JTextArea{
    private  static final int GAP = 5;
    public CustomTextFeild(){
        setOpaque(true);
        setBorder(BorderFactory.createLineBorder(Color.YELLOW,GAP,true));
        setLineWrap(true);
        setText("Juice Producing process.......\n");
    }
    public Dimension getPreferredSize(){
        return  (new Dimension(100,100)) ;
    }
    public void addText(String words){
        append(words+"\n");
    }
}

package JuiceFactory;
//where the program begins
public class Main  extends CustomTextFeild{

        public Main(){
             new Juice();
        }

        public static void main(String[] args) {


            JuiceFactory juiceFactory = new JuiceFactory();

        }
}

4.To show the procedure

package JuiceFactory;

public class Juice extends JuiceFactory implements Runnable{

    public Juice(){
        Thread t1 =  new Thread(this);
        t1.start();

    }

    @Override
    public void run() {
        try {
            printMessage("Put Fruits into the mixer.......");
            Thread.sleep(3000);
            printMessage("Juice is done!");
        } catch (InterruptedException e){
            e.printStackTrace();
        }
    }
}
0

There are 0 best solutions below