Browse Source

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
tags/Defoe_export
Peter Bernard West 20 years ago
parent
commit
fa166cb382
1 changed files with 41 additions and 0 deletions
  1. 41
    0
      src/java/org/apache/fop/area/BorderRectangle.java

+ 41
- 0
src/java/org/apache/fop/area/BorderRectangle.java View 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);
}

}

Loading…
Cancel
Save