Skip to content
Advertisement

In Java how do you pass variables and lists between jframe components

I have created a simple program with a list object. I also have a simple UI and want to add the values from the different parts of the list to the text frames and labels but cannot find how to pass the values that are needed.

The list object has been created in the main class of the UI (which was created using the GUI builder in Netbeans).

I have tried accessing the value that is needed in the jButton action performed section, but am told that package exampleProgram does not exist.

JavaScript

The two other files in the package currently are ExampleProgram

JavaScript

And ExampleClass

JavaScript

UPDATE:

Tried suggested answer – works when using the constructor, but still not able to access the passed object in the buttons action code.

JavaScript

Advertisement

Answer

JavaScript

Pass data in the constructor of ExampleUI class then access it in ExampleUI class. Hope this will help you.

Advertisement