(Object[] objectsToSize)
| 120 | } |
| 121 | |
| 122 | public static int setFonts(Object[] objectsToSize) { |
| 123 | Font f = ((Component) objectsToSize[0]).getFont(); |
| 124 | Font newFont = (f == null ? null : getResizedFont(f, level)); |
| 125 | if (newFont != null && newFont != f && !newFont.equals(f)) |
| 126 | setFonts(objectsToSize, level); |
| 127 | return level; |
| 128 | } |
| 129 | |
| 130 | public static int setFonts(Container c) { |
| 131 |