Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 82545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T21:38:01+00:00 2026-05-10T21:38:01+00:00

I have a JFrame that contains a display JPanel with JTextField and a control

  • 0

I have a JFrame that contains a ‘display’ JPanel with JTextField and a ‘control’ JPanel with buttons that should access the contents of the display JPanel. I think my problem is related on how to use the observer pattern, which in principle I understand. You need to place listeners and update messages, but I don’t have a clue where to put these, how to get access from one panel to the other and maybe if necessary to introduce a ‘datamodel’ class. For example, I want to access the contents of the JTextField from the control panel and I use an anonymous action listener as follows:

JButton openfile = new JButton('Convert file'); openfile.addActionListener(new ActionListener() {      public void actionPerformed(ActionEvent e) {          openButtonPressed();     }            }); 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T21:38:02+00:00Added an answer on May 10, 2026 at 9:38 pm

    You need to reduce the coupling between these objects.

    You can have a master object, that owns all the text fields and the button ( the panels are irrelevant )

    Then a separete actionlistener within that master object ( I call it mediator see mediator pattern )

    That action listener performs a method on the mediator which in turn take the values from the textfields and create perhaps a transfer object.

    This way you reduce the coupling between the panels, textfields etc. and let the control in one place ( the mediator ) that is, you don’t let them know each other.

    You can take a look at the code in this question: https://stackoverflow.com/questions/324554/#324559

    It shows these concepts in running code.

    BTW the observer pattern is already implemented in the JTextField, JButton, ActionListener etc. You just need to add the hooks.

    I hope this helps.

    EDIT Joined two answers into one.

    This is the code.

    class App { // this is the mediator      // GUI components.     private JFrame frame;     private JTextField name;     private JTextField count;     private JTextField date;     // Result is displayed here.     private JTextArea textArea;      // Fired by this button.     private JButton   go;      private ActionListener actionListener;       public App(){         actionListener = new ActionListener(){             public void actionPerformed( ActionEvent e ){                 okButtonPressed();             }         };     }      private void okButtonPressed(){          // template is an object irrelevant to this code.          template.setData( getData() );          textArea.setText( template.getTransformedData() );     }       public void initialize(){          frame     = new JFrame('Code challenge v0.1');         frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );          name     = new JTextField();         count    = new JTextField();         date     = new JTextField();         textArea = new JTextArea();         go       = new JButton('Go');         go.addActionListener( actionListener ); // prepare the button.          layoutComponents(); // a lot of panels are created here. Irrelevant.     } } 

    Complete and running code can be retrieved here:

    It is important to favor composition over inheritance when possible.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently, I have a JFrame that contains a JPanel . The JPanel is the
My current problem is that I have a JFrame with a 2x2 GridLayout. And
I am trying to construct a basic control that will display an undecorated JFrame
I have a JFrame that contains a JTextPane. The purpose of this JTextPane is
I have a JFrame which contains a JApplet. There are shortcut keys that I
I have a JFrame that contains 4 instances of ScrollPane , each with its
I have a top level container (JFrame) that contains two JPanels. One of the
I have a JFrame which contains just one JPanel. I have tried setting the
I am creating a popup JFrame that will have a message and yes/no buttons.
This one's a tough one - I have a JFrame that generates JTextFields. When

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.