im really stuck, i have to define the container object by associating it with the JFrame in order to get my JFrame working with all its components.
my code is follows:
// get content pane for attaching GUI components
Container contentPane = getContentPane();
my JFrame i wish to call it billFrame, I also want to call my container billContentPane, so im looking for something like:
private JFrame billFrame = new JFrame();
Would the above code be correct, or what would i have to change? would an instance variable have to be declared or am i way off the mark?