]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
don't implement serializable twice
authorKeiron Liddle <keiron@apache.org>
Thu, 19 Sep 2002 09:20:06 +0000 (09:20 +0000)
committerKeiron Liddle <keiron@apache.org>
Thu, 19 Sep 2002 09:20:06 +0000 (09:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195234 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/area/Area.java
src/org/apache/fop/area/Block.java
src/org/apache/fop/area/BlockParent.java
src/org/apache/fop/area/RegionReference.java

index 5c381d2dbb3d0c7f9c9b256d306d96eb06a0bbc3..9bfc6a43492293491aa5f2fef00ba98477501e96 100644 (file)
@@ -151,6 +151,8 @@ public class Area implements Serializable {
      * @param child the child area to add
      */
     public void addChild(Area child) {
+System.out.println("mmmm");
+(new Exception()).printStackTrace();
     }
 
     /**
index 65582075257c48fdbb8a554b681fb2f812e3e98d..c77a91859a7276651d73239a37b2ccabf6e2b9b5 100644 (file)
@@ -7,7 +7,6 @@
 
 package org.apache.fop.area;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 
 // block areas hold either more block areas or line
@@ -21,7 +20,7 @@ import java.util.ArrayList;
  * This is the block area class.
  * It holds child block areas such as other blocks or lines.
  */
-public class Block extends BlockParent implements Serializable {
+public class Block extends BlockParent {
     /**
      * Normally stacked with other blocks.
      */
index 1604cd86cf0ac90cf113740e28c0aa8658348c40..5352efffc946b22de12767fbbb35a27a6c09c163 100644 (file)
@@ -7,14 +7,13 @@
 
 package org.apache.fop.area;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
 
 /**
  * A BlockParent holds block-level areas.
  */
-public class BlockParent extends Area implements Serializable {
+public class BlockParent extends Area {
 
     // this position is used for absolute position
     // or as an indent
index 30a6217609c57fbf26d27f788033a91ea9c7f2ad..1af0386c2ee3f6df1409cacda640f0ed4b9cb873 100644 (file)
@@ -7,7 +7,6 @@
 
 package org.apache.fop.area;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
 
@@ -16,7 +15,7 @@ import java.util.List;
  * This area represents a region on the page. It is cloneable
  * so the page master can make copies from the original page and regions.
  */
-public class RegionReference extends Area implements Serializable, Cloneable {
+public class RegionReference extends Area implements Cloneable {
     /**
      * The before region.
      */