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 1012379
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T09:56:16+00:00 2026-05-16T09:56:16+00:00

I been trying to do the question title. Here is my current code: Main.java

  • 0

I been trying to do “the question title”. Here is my current code:

Main.java

import java.awt.*;
import javax.swing.*;

public class Main {

public static void main(String[] args) {

JFrame f= new JFrame ("My Frame");
f.setDefaultCloseOperation (JFrame .EXIT_ON_CLOSE);

JTabbedPane tp = new JTabbedPane();
User user = new User();
tp.addTab("Register", new Register(user));
tp.addTab("Process", new Process(user));

f.add(tp);
f.pack();
f.setVisible(true);
}

}

Register.java

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Register extends JPanel {
/*
    The code too long, but what this class does is, display textfields:
    username, password and email address
    And there is a submit button, when press, it will update the process pane
    */
}

How to pass the username password and email to Process.java(Jpanel)?

[I am new to java and no programming background]

  • 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. Editorial Team
    Editorial Team
    2026-05-16T09:56:17+00:00Added an answer on May 16, 2026 at 9:56 am

    As I can see, you share user between Register and Process. So the problem is how to refresh Process when data in user are updated. You could create listener on User, or on ‘Register’. IMHO listener on ‘Register’ is more elegant.

    RegisterListener:

    public interface RegisterListener {
      void userRegistered(User user);
    }
    

    Register:

    public void addRegisterListener(RegisterListener listener) {
      //add listener to some collection.
    }
    
    //Call this method on Submit button press
    protected void fireRegistered() {
      //iterate over collection of listeners and on each do:
        listener.userRegistered(user);
    }
    

    Process:

    Process implements RegisterListener {
      public void userRegistered(User user) {
        refreshView();
      }
    }
    

    And in main:

    Register register = new Register(user);
    Process process = new Process();
    register.addRegisterListener(process);
    

    So Process should be informed when user is registered, and it should receive all the necessary data in user parameter of listener method.

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

Sidebar

Related Questions

This is a simple htaccess question for experts but I have been trying to
I am sorry for the dumb question I have been trying for a while
This seems like a newbie question except that I've been trying to wrap my
I have what I feel should be a simple question. I have been trying
I've been searching around trying to find an answer to this question, and I
I'm trying to parse out the XML below with the PHP code shown here
I've been asking a lot of questions here over the past few days trying
This is a variation on a question that has been asked here several times.
I know the question title may be confusing, but here is what I am
First question so be gentle. I have been trying some projects involving the webbrowser

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.