Reputation: 35
Im know i can look up all the layout managers possible, but for my assignment I am only allowed to use layout managers from awt.* and swing.* packages. Could someone please tell me what are the ones available in those 2 packages.
Upvotes: 0
Views: 58
Reputation: 103135
The Layout managers in the awt and swing packages all implement the LayoutManager interface. By looking at the documentation for that interface you will see the list of direct implementors which would be the layout managers in those packages,
Upvotes: 0