Hi,
The Javadoc for CC.spanX() says it is equivalent to CC.spanX(LayoutUtil.INF) so I was thinking of using CC.span(LayoutUtil.INF) instead of CC.spanX().spanY(). Now, granted the former is less readable than the latter (so I will avoid it) I found it surprising that LayoutUtil.INF is package-protected. If I can't use the constant, the Javadoc shouldn't refer to it...
Secondly, I noticed you use the following Javadoc:
Code:
{@link #setSpanX(int LayoutUtil.INF)}
This doesn't render correctly. You should do this instead:
Code:
{@link #setSpanX(int) setSpanX(LayoutUtil.INF)}
Source: http://download.oracle.com/javase/6/docs/technotes/tools/windows/javadoc.html#@link
Gili