]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed copyright dates.
authorPeter Bernard West <pbwest@apache.org>
Wed, 28 Jan 2004 06:26:40 +0000 (06:26 +0000)
committerPeter Bernard West <pbwest@apache.org>
Wed, 28 Jan 2004 06:26:40 +0000 (06:26 +0000)
Synchronized with changes to Node.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197280 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/datastructs/TNode.java

index 355fb03789e9fbd9942aa614bc5bcd16c39d650f..7c9158578f93f22c267e286f7994416cded75de0 100644 (file)
@@ -1,5 +1,5 @@
 /*
-   Copyright 2004 The Apache Software Foundation.
+   Copyright 2002-2004 The Apache Software Foundation.
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -34,11 +34,11 @@ public class TNode extends Node {
     }
 
     public TNode(Tree tree, TNode parent, int index) {
-        super(parent, index);
+        super(parent, index, Node.SYNCHRONIZE);
     }
 
     public TNode(TNode parent) {
-        super(parent);
+        super(parent, Node.SYNCHRONIZE);
     }
 
     /**
@@ -49,7 +49,7 @@ public class TNode extends Node {
      */
 
     public TNode(TNode parent, Object content) {
-        super(parent);
+        super(parent, Node.SYNCHRONIZE);
         this.content = content;
     }
 
@@ -63,7 +63,7 @@ public class TNode extends Node {
 
     public TNode(TNode parent, int index, Object content)
         throws IndexOutOfBoundsException {
-        super(parent, index);
+        super(parent, index, Node.SYNCHRONIZE);
         this.content = content;
     }