In `Java`, `setBounds()` is a method that resizes swing components
In Java, setBounds()
is a method that resizes swing components with the syntax (x-dimension, y-dimension, width of component, height of component). setBounds()
is a hybrid of setSize()
and setLocation()
. The (x,y) location is relative to the parent of the component.