From: Peter Bernard West Date: Sat, 10 Jul 2004 16:34:15 +0000 (+0000) Subject: set(Top,Bottom,Left,Right) mosified to update SpacesRectangle X-Git-Tag: Defoe_export~47 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fa166cb382a3ee537c9077dcb46ee9278205d893;p=xmlgraphics-fop.git set(Top,Bottom,Left,Right) mosified to update SpacesRectangle git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197779 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/area/BorderRectangle.java b/src/java/org/apache/fop/area/BorderRectangle.java index 6ba41b899..2fb4f06ce 100644 --- a/src/java/org/apache/fop/area/BorderRectangle.java +++ b/src/java/org/apache/fop/area/BorderRectangle.java @@ -56,4 +56,45 @@ public class BorderRectangle extends AreaFrame { public SpacesRectangle getSpaces() { return spaces; } + + /** + * {@inheritDoc} + *

The containing SpacesRectangle is notified of the + * change. + */ + public void setTop(double top) { + super.setTop(top); + spaces.setContents(this); + } + + /** + * {@inheritDoc} + *

The containing SpacesRectangle is notified of the + * change. + */ + public void setLeft(double left) { + super.setLeft(left); + spaces.setContents(this); + } + + /** + * {@inheritDoc} + *

The containing SpacesRectangle is notified of the + * change. + */ + public void setBottom(double bottom) { + super.setBottom(bottom); + spaces.setContents(this); + } + + /** + * {@inheritDoc} + *

The containing SpacesRectangle is notified of the + * change. + */ + public void setRight(double right) { + super.setRight(right); + spaces.setContents(this); + } + }