]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
set(Top,Bottom,Left,Right) mosified to update SpacesRectangle
authorPeter Bernard West <pbwest@apache.org>
Sat, 10 Jul 2004 16:34:15 +0000 (16:34 +0000)
committerPeter Bernard West <pbwest@apache.org>
Sat, 10 Jul 2004 16:34:15 +0000 (16:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197779 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/area/BorderRectangle.java

index 6ba41b899fb0f6a7dcea77affef75bf980a50cd8..2fb4f06cedd7880797f79bd9e5fe330119e17d9c 100644 (file)
@@ -56,4 +56,45 @@ public class BorderRectangle extends AreaFrame {
     public SpacesRectangle getSpaces() {
         return spaces;
     }
+
+    /**
+     * {@inheritDoc}
+     * <p>The containing <code>SpacesRectangle</code> is notified of the
+     * change.
+     */
+    public void setTop(double top) {
+        super.setTop(top);
+        spaces.setContents(this);
+    }
+
+    /**
+     * {@inheritDoc}
+     * <p>The containing <code>SpacesRectangle</code> is notified of the
+     * change.
+     */
+    public void setLeft(double left) {
+        super.setLeft(left);
+        spaces.setContents(this);
+    }
+
+    /**
+     * {@inheritDoc}
+     * <p>The containing <code>SpacesRectangle</code> is notified of the
+     * change.
+     */
+    public void setBottom(double bottom) {
+        super.setBottom(bottom);
+        spaces.setContents(this);
+    }
+
+    /**
+     * {@inheritDoc}
+     * <p>The containing <code>SpacesRectangle</code> is notified of the
+     * change.
+     */
+    public void setRight(double right) {
+        super.setRight(right);
+        spaces.setContents(this);
+    }
+
 }