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 ke...@locus.apache.org on 2000/08/03 07:13:09 UTC

cvs commit: xml-fop/src/org/apache/fop/datatypes Length.java

keiron      00/08/02 22:13:08

  Modified:    src/org/apache/fop/datatypes Length.java
  Log:
  added isAuto method so I can find out if it is
  
  Revision  Changes    Path
  1.8       +6 -1      xml-fop/src/org/apache/fop/datatypes/Length.java
  
  Index: Length.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/datatypes/Length.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Length.java	2000/06/27 22:13:10	1.7
  +++ Length.java	2000/08/03 05:13:05	1.8
  @@ -1,4 +1,4 @@
  -/*-- $Id: Length.java,v 1.7 2000/06/27 22:13:10 fotis Exp $ -- 
  +/*-- $Id: Length.java,v 1.8 2000/08/03 05:13:05 keiron Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -134,6 +134,11 @@
        */
       public int mvalue() {
   	return millipoints;
  +    }
  +
  +    public boolean isAuto()
  +    {
  +	return auto;
       }
   
       public String toString() {