pbwest      2002/06/27 05:55:19

  Modified:    src/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design
                        FOAttributes.java FObject.java FObjectNames.java
                        FObjects.java FONode.java FoRoot.java FOTree.java
                        PropertyConsts.java PropertySets.java
                        PropNames.java
  Log:
  Added ident keywords
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.2   +5 -2      xml-fop/src/org/apache/fop/fo/Attic/FOAttributes.java
  
  Index: FOAttributes.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/FOAttributes.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- FOAttributes.java 7 May 2002 05:17:52 -0000       1.1.2.1
  +++ FOAttributes.java 27 Jun 2002 12:55:18 -0000      1.1.2.2
  @@ -35,6 +35,9 @@
   
   public class FOAttributes {
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       /**
        * <i>nSpaceAttrLists</i> is an <tt>ArrayList</tt> to hold the array of 
        * <tt>HashMap</tt>s which contain the attribute lists for each
  
  
  
  1.1.2.2   +4 -1      xml-fop/src/org/apache/fop/fo/Attic/FObject.java
  
  Index: FObject.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/FObject.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- FObject.java      7 May 2002 05:17:52 -0000       1.1.2.1
  +++ FObject.java      27 Jun 2002 12:55:18 -0000      1.1.2.2
  @@ -17,6 +17,9 @@
    */
   public class FObject {
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       private int foIndex;
   
       public FObject(int foIndex) {
  
  
  
  1.1.2.2   +4 -1      xml-fop/src/org/apache/fop/fo/Attic/FObjectNames.java
  
  Index: FObjectNames.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/FObjectNames.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- FObjectNames.java 7 May 2002 05:17:52 -0000       1.1.2.1
  +++ FObjectNames.java 27 Jun 2002 12:55:18 -0000      1.1.2.2
  @@ -17,6 +17,9 @@
   
   public class FObjectNames {
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       /**
        * Constant for matching Flow Object defined in <i>XSLFO</i>.
        */
  
  
  
  1.1.2.2   +5 -2      xml-fop/src/org/apache/fop/fo/Attic/FObjects.java
  
  Index: FObjects.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/FObjects.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- FObjects.java     7 May 2002 05:17:52 -0000       1.1.2.1
  +++ FObjects.java     27 Jun 2002 12:55:18 -0000      1.1.2.2
  @@ -32,6 +32,9 @@
   
   public class FObjects {
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       public static final String XSLNamespace =
                                           "http://www.w3.org/1999/XSL/Format";;
   
  
  
  
  1.19.2.2  +4 -1      xml-fop/src/org/apache/fop/fo/FONode.java
  
  Index: FONode.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/FONode.java,v
  retrieving revision 1.19.2.1
  retrieving revision 1.19.2.2
  diff -u -r1.19.2.1 -r1.19.2.2
  --- FONode.java       7 May 2002 05:23:06 -0000       1.19.2.1
  +++ FONode.java       27 Jun 2002 12:55:18 -0000      1.19.2.2
  @@ -34,6 +34,9 @@
   
   public class FONode extends FOTree.Node{
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       /**
        * Constants for the set of attributes of interest with this FONode
        */
  
  
  
  1.1.2.2   +5 -4      xml-fop/src/org/apache/fop/fo/Attic/FoRoot.java
  
  Index: FoRoot.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/FoRoot.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- FoRoot.java       7 May 2002 05:17:52 -0000       1.1.2.1
  +++ FoRoot.java       27 Jun 2002 12:55:18 -0000      1.1.2.2
  @@ -36,6 +36,9 @@
   
   public class FoRoot extends FONode {
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       private FoLayoutMasterSet layoutMasters;
   
       /**
  @@ -115,5 +118,3 @@
           
       }
   }
  -
  -
  
  
  
  1.1.2.3   +4 -1      xml-fop/src/org/apache/fop/fo/Attic/FOTree.java
  
  Index: FOTree.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/FOTree.java,v
  retrieving revision 1.1.2.2
  retrieving revision 1.1.2.3
  diff -u -r1.1.2.2 -r1.1.2.3
  --- FOTree.java       9 Jun 2002 10:25:29 -0000       1.1.2.2
  +++ FOTree.java       27 Jun 2002 12:55:18 -0000      1.1.2.3
  @@ -46,6 +46,9 @@
   
   public class FOTree extends Tree implements Runnable {
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       /**
        * The buffer from which the <tt>XMLEvent</tt>s from the parser will
        * be read.  <tt>protected</tt> so that FONode can access it.
  
  
  
  1.1.2.2   +5 -2      xml-fop/src/org/apache/fop/fo/Attic/PropertyConsts.java
  
  Index: PropertyConsts.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/PropertyConsts.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- PropertyConsts.java       7 May 2002 05:17:52 -0000       1.1.2.1
  +++ PropertyConsts.java       27 Jun 2002 12:55:18 -0000      1.1.2.2
  @@ -56,6 +56,9 @@
    */
   public class PropertyConsts {
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       private static final String packageName = "org.apache.fop.fo";
   
       /**
  
  
  
  1.1.2.6   +5 -2      xml-fop/src/org/apache/fop/fo/Attic/PropertySets.java
  
  Index: PropertySets.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/PropertySets.java,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- PropertySets.java 26 Jun 2002 14:18:50 -0000      1.1.2.5
  +++ PropertySets.java 27 Jun 2002 12:55:18 -0000      1.1.2.6
  @@ -32,6 +32,9 @@
    */
   public class PropertySets {
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       private static final String packageName = "org.apache.fop.fo";
   
       /**
  
  
  
  1.1.2.2   +4 -1      xml-fop/src/org/apache/fop/fo/Attic/PropNames.java
  
  Index: PropNames.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/PropNames.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- PropNames.java    7 May 2002 05:17:52 -0000       1.1.2.1
  +++ PropNames.java    27 Jun 2002 12:55:18 -0000      1.1.2.2
  @@ -18,6 +18,9 @@
   
   public class PropNames {
   
  +    private static final String tag = "$Name$";
  +    private static final String revision = "$Revision$";
  +
       /*
        * The list of property constants can be regenerated in XEmacs by setting
        * the region on the list of constants. (C-Space at the beginning,
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to