A debugging utility that prints to stdout the component's minimum, preferred, and maximum sizes.
(Component c)
| 47 | * minimum, preferred, and maximum sizes. |
| 48 | */ |
| 49 | public static void printSizes(Component c) { |
| 50 | System.out.println("minimumSize = " + c.getMinimumSize()); |
| 51 | System.out.println("preferredSize = " + c.getPreferredSize()); |
| 52 | System.out.println("maximumSize = " + c.getMaximumSize()); |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Aligns the first <code>rows</code> * <code>cols</code> |
nothing calls this directly
no test coverage detected