user1232112
user1232112

Reputation: 35

Java - What are the layout managers available in awt.* and swing.* packages?

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

Answers (2)

Vincent Ramdhanie
Vincent Ramdhanie

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

Related Questions