1
I’m using Windowbuilder to draw the graphical interface, but there’s one thing that’s kind of boring about it, and that’s this. When I create a Jlabel for example, it declares the Jlabel inside the constructor, making it impossible for me to use it directly in other methods. Would there be some way that automatically everything I created would go directly to the class, get organized at the top, so I don’t have to do it manually with every component I have to manipulate in more than one class?
The strange thing is that some components it creates directly in the class, instead of the constructor method, such as Jtextfield.
– Math