You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ar...@apache.org on 2001/02/10 04:30:39 UTC

cvs commit: xml-fop/src/org/apache/fop/layout Area.java

arved       01/02/09 19:30:39

  Modified:    src/org/apache/fop/layout Area.java
  Log:
  store FO creator (MIF support)
  
  Revision  Changes    Path
  1.15      +10 -1     xml-fop/src/org/apache/fop/layout/Area.java
  
  Index: Area.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/layout/Area.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- Area.java	2001/01/12 04:48:28	1.14
  +++ Area.java	2001/02/10 03:30:38	1.15
  @@ -1,4 +1,4 @@
  -/*-- $Id: Area.java,v 1.14 2001/01/12 04:48:28 keiron Exp $ --
  +/*-- $Id: Area.java,v 1.15 2001/02/10 03:30:38 arved Exp $ --
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -91,6 +91,10 @@
       protected int paddingBottom;
       protected int paddingRight;
   
  +    /* author : Seshadri G
  +    ** the fo which created it */	
  +    public org.apache.fop.fo.FObj foCreator;	
  +        
       public int borderWidthTop;
       public int borderWidthLeft;
       public int borderWidthRight;
  @@ -310,5 +314,10 @@
       public IDReferences getIDReferences() {
           return idReferences;
       }
  +
  +	/* Author seshadri */    
  +	public org.apache.fop.fo.FObj getfoCreator() {
  +		return this.foCreator;
  +	}	
   
   }