use of org.apache.pivot.wtk.text.TextSpan in project pivot by apache.
the class TextPaneSkinSpanView method attach.
@Override
protected void attach() {
super.attach();
TextSpan span = (TextSpan) getNode();
// that child is a TextNode
if (span.getLength() > 1) {
throw new IllegalStateException();
}
}
Aggregations