// a reference to this figure. By doing so, it precludes the
// possibility of having multiple views on this model.
LabelFigure label = new LabelFigure(truncated, _labelFont, 1.0,
SwingConstants.CENTER);
Rectangle2D backBounds = result.getBackgroundFigure().getBounds();
label.translateTo(backBounds.getCenterX(), backBounds.getCenterY());
result.add(label);
_addLiveFigure(label);
return result;
}