* @return The shape to which the contents should be clipped.
* All encapsulated dimensions are expressed in millipoints.
*/
public Shape traitClip(final FObj fobj, final FoContext context,
final Shape containerShape) {
final PdClip property = (PdClip) getProperty(FoProperty.CLIP);
if (property != null) {
return property.getValue(context, fobj, containerShape);
}
return PdClip.getValueNoInstance();
}