pbwest      2004/05/30 09:53:02

  Modified:    src/java/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design
                        FOPageSeqNode.java
  Log:
  Changed FONode to FoPageSequence in signature.
  Changed myContext to layoutContext.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.2.7   +7 -6      xml-fop/src/java/org/apache/fop/fo/Attic/FOPageSeqNode.java
  
  Index: FOPageSeqNode.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/Attic/FOPageSeqNode.java,v
  retrieving revision 1.1.2.6
  retrieving revision 1.1.2.7
  diff -u -r1.1.2.6 -r1.1.2.7
  --- FOPageSeqNode.java        29 May 2004 18:53:15 -0000      1.1.2.6
  +++ FOPageSeqNode.java        30 May 2004 16:53:02 -0000      1.1.2.7
  @@ -56,7 +56,7 @@
        * Comment for <code>childContext</code>
        */
       protected Area currentArea = null;
  -    protected Area myContext = null;
  +    protected Area layoutContext = null;
       protected ArrayList generated = null;
       /** Decorations applicable to generated text. See 7.16.4 "text-decoration"
        * in the Recommendation.*/
  @@ -92,7 +92,7 @@
       public FOPageSeqNode(
           FOTree foTree,
           int type,
  -        FONode pageSequence,
  +        FoPageSequence pageSequence,
           FONode parent,
           XmlEvent event,
           int stateFlags,
  @@ -112,8 +112,9 @@
                       "FOPageSeqNode constructor expects FoPageSequence; got " +
                       nodeType());
           }
  -        this.pageSequence = (FoPageSequence)pageSequence;
  +        this.pageSequence = pageSequence;
           decorations = processDecorations();
  +        layoutContext = getLayoutContext();
       }
       
       
  @@ -142,7 +143,7 @@
       public FOPageSeqNode(
               FOTree foTree,
               int type,
  -            FONode pageSequence,
  +            FoPageSequence pageSequence,
               XmlEvent event,
               int stateFlags,
               int[] sparsePropsMap,
  
  
  

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

Reply via email to