MCPcopy Create free account
hub / github.com/GateNLP/gate-core / printSizes

Method printSizes

src/main/java/gate/swing/SpringUtilities.java:49–53  ·  view source on GitHub ↗

A debugging utility that prints to stdout the component's minimum, preferred, and maximum sizes.

(Component c)

Source from the content-addressed store, hash-verified

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>

Callers

nothing calls this directly

Calls 4

printlnMethod · 0.45
getMinimumSizeMethod · 0.45
getPreferredSizeMethod · 0.45
getMaximumSizeMethod · 0.45

Tested by

no test coverage detected