]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Updated copyright dates
authorPeter Bernard West <pbwest@apache.org>
Mon, 8 Mar 2004 21:54:55 +0000 (21:54 +0000)
committerPeter Bernard West <pbwest@apache.org>
Mon, 8 Mar 2004 21:54:55 +0000 (21:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197431 13f79535-47bb-0310-9956-ffa450edef68

12 files changed:
src/java/org/apache/fop/fo/FOAttributes.java
src/java/org/apache/fop/fo/flow/FoCharacter.java
src/java/org/apache/fop/fo/flow/FoExternalGraphic.java
src/java/org/apache/fop/fo/flow/FoInitialPropertySet.java
src/java/org/apache/fop/fo/flow/FoInstreamForeignObject.java
src/java/org/apache/fop/fo/flow/FoMultiPropertySet.java
src/java/org/apache/fop/fo/flow/FoNoFo.java
src/java/org/apache/fop/fo/flow/FoPageNumber.java
src/java/org/apache/fop/fo/flow/FoPageNumberCitation.java
src/java/org/apache/fop/fo/flow/FoPcdata.java
src/java/org/apache/fop/fo/flow/FoRetrieveMarker.java
src/java/org/apache/fop/fo/flow/FoTableColumn.java

index e234360f2e9b03048c064ad659f9f6a208ad95ad..935e885db57a4ef9b0cdeea6b0665ffc3f975024 100644 (file)
@@ -1,11 +1,6 @@
 /*
- * FOAttributes.java
- * $Id$
- *
- * Created: Wed Nov 14 15:19:51 2001
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
+ * $Id$
  *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
- * @version $Revision$ $Name$
+ * Created: Wed Nov 14 15:19:51 2001
  */
 package org.apache.fop.fo;
 
@@ -43,6 +37,9 @@ import org.apache.fop.xml.Namespaces;
 /**
  * The FO Attributes data structures and methods needed to manage the
  * Attributes associated with FO nodes.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * @version $Revision$ $Name$
  */
 
 public class FOAttributes {
index f6d1e1b7cc1ffc1678d9e9aa10c387b4b7959051..ad218c72652945061b0157363755e7c6e0594c1a 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -39,6 +35,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:character flow object.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoCharacter extends FOPageSeqNode {
 
index 75c9b92aaf924d1eb3ee93dca2ec6755cf8bcecc..e5f255b81864319e66a51cc84bf00d232a35efa7 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -39,6 +35,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:external-graphic flow object.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoExternalGraphic extends FOPageSeqNode {
 
index 846755ea9ee9e6855c7151b685a76dfc2801d4d7..dbe2d2ccc670ee7fba968b07981918845feef1f2 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -39,6 +35,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:initial-property-set flow object.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoInitialPropertySet extends FOPageSeqNode {
 
index ab5684a9cacd2f343a143b1b6ce1be66c87fe4b6..cc57f667368d8c92b0a0e272dd72544882a69d23 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -39,6 +35,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:instream-foreign-object flow object.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoInstreamForeignObject extends FOPageSeqNode {
 
index a0d8a9d1ebbeb6efe17a4b5f4e4d9bbf13d46383..316d52f4822c96f8b06a6e540305f0fdcee26793 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -38,6 +34,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:multi-property-set flow object.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoMultiPropertySet extends FOPageSeqNode {
 
index 19cb5a7b39f02281d65475ee44704c5ff5990f8e..0a0c5d052108ccbe05b5e0327182dc8e1d885386 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -32,6 +28,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:no-fo flow object.
+ * 
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoNoFo {
 
index 9dff54cc7dd4c19785ea364bac7cfff94d90f6e7..43f638b8376e67de36036c123adfacb5e2b6e573 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -39,6 +35,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:page-number flow object.
+ * 
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoPageNumber extends FOPageSeqNode {
 
index 0d092ca3859e4522fba71c358a1b76577cad80cd..9230f49b036b34475bf8d5486caf1b3088e60629 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -39,6 +35,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:page-number-citation flow object.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoPageNumberCitation extends FOPageSeqNode {
 
index 5ac7d6be99d8f79f43fffd5e4a739a8a64904a9d..32788e3949c2c1d684574777266c1c7c5c83437a 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -39,6 +35,8 @@ import org.apache.fop.xml.XmlEvent;
 
 /**
  * Implements #PcdATA within page-sequence flow objects.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoPcdata extends FOPageSeqNode {
 
index 8eed723ff06a011fe7f10dc6e358d3a916e36c7a..2d39283701f420739863f8bf1d0559dcefb3ae52 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -38,6 +34,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:retrieve-marker flow object.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoRetrieveMarker extends FOPageSeqNode {
 
index 837a9a8746ea44a8e5905554a336677e4e289ae0..798a10475b33a845bc6a399eca258c7d0ee0d881 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * $Id$
- * 
  *
- * Copyright 1999-2003 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -16,9 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- *  
- *
- * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * $Id$
  */
 
 package org.apache.fop.fo.flow;
@@ -39,6 +35,8 @@ import org.apache.fop.xml.FoXmlEvent;
 
 /**
  * Implements the fo:table-column flow object.
+ *
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  */
 public class FoTableColumn extends FOPageSeqNode {