org.apache.fop.layoutmgr
Interface ConditionalElementListener
- BlockContainerLayoutManager, BlockLayoutManager, ListBlockLayoutManager, ListItemLayoutManager, TableLayoutManager
public interface ConditionalElementListener
This interface is used to notify layout managers about the situation around spaces, borders
and padding just before the addArea() method is called when a part is being painted.
notifyBorder
public void notifyBorder(RelSide side,
MinOptMax effectiveLength)
Notifies the layout manager about the effective length/width of its border.
side
- the side to which the border applieseffectiveLength
- the effective length in the current break situation
(null means zero length)
notifyPadding
public void notifyPadding(RelSide side,
MinOptMax effectiveLength)
Notifies the layout manager about the effective length/width of its padding.
side
- the side to which the padding applieseffectiveLength
- the effective length in the current break situation
(null means zero length)
notifySpace
public void notifySpace(RelSide side,
MinOptMax effectiveLength)
Notifies the layout manager about the effective length of its space.
side
- the side to which the space applieseffectiveLength
- the effective length after space-resolution (null means zero length)
Copyright 1999-2008 The Apache Software Foundation. All Rights Reserved.